├── .bumpversion.cfg ├── .github ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── SECURITY.md ├── dependabot.yml ├── labeler.yml ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── ci.yml │ ├── release-draft.yml │ ├── release.yml │ └── set-labels.yml ├── .gitignore ├── LICENSE ├── README.md ├── THIRD-PARTY-LICENSES ├── context_logging ├── __init__.py ├── config.py ├── context.py ├── log_record.py ├── logger.py └── utils.py ├── makefile ├── poetry.lock ├── pyproject.toml ├── setup.cfg └── tests ├── __init__.py ├── conftest.py └── test_context_logging.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-draft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/workflows/release-draft.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/set-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.github/workflows/set-labels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/THIRD-PARTY-LICENSES -------------------------------------------------------------------------------- /context_logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/context_logging/__init__.py -------------------------------------------------------------------------------- /context_logging/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/context_logging/config.py -------------------------------------------------------------------------------- /context_logging/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/context_logging/context.py -------------------------------------------------------------------------------- /context_logging/log_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/context_logging/log_record.py -------------------------------------------------------------------------------- /context_logging/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/context_logging/logger.py -------------------------------------------------------------------------------- /context_logging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/context_logging/utils.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/makefile -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_context_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afonasev/context_logging/HEAD/tests/test_context_logging.py --------------------------------------------------------------------------------