├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── logging_json ├── __init__.py ├── _formatter.py ├── py.typed └── version.py ├── pyproject.toml └── tests ├── __init__.py └── test_formatter.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /logging_json.egg-info/ 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/_config.yml -------------------------------------------------------------------------------- /logging_json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/logging_json/__init__.py -------------------------------------------------------------------------------- /logging_json/_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/logging_json/_formatter.py -------------------------------------------------------------------------------- /logging_json/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logging_json/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/logging_json/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/logging_json/HEAD/tests/test_formatter.py --------------------------------------------------------------------------------