├── .ackrc ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── coverage.yaml │ ├── matchers │ └── ruff.json │ ├── publish-to-pypi.yaml │ ├── pyright.yaml │ ├── pytest.yaml │ └── ruff.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── annotated_logger ├── __init__.py ├── filter.py ├── mocks.py ├── plugins.py └── py.typed ├── example ├── __init__.py ├── actions.py ├── api.py ├── calculator.py ├── default.py ├── invalid_order.py └── logging_config.py ├── pyproject.toml ├── requirements.txt ├── requirements └── requirements-dev.txt ├── script ├── bootstrap ├── bootstrap_python ├── lint ├── mutate ├── mutmut_runner ├── sort_wordlist └── test └── test ├── __init__.py ├── conftest.py ├── demo.py ├── test_decorator.py ├── test_logging_config.py ├── test_memory.py ├── test_mocks.py └── test_plugins.py /.ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/.ackrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @github/annotated-logger-reviewers 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/.github/workflows/coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/matchers/ruff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/.github/workflows/matchers/ruff.json -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/.github/workflows/publish-to-pypi.yaml -------------------------------------------------------------------------------- /.github/workflows/pyright.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/.github/workflows/pyright.yaml -------------------------------------------------------------------------------- /.github/workflows/pytest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/.github/workflows/pytest.yaml -------------------------------------------------------------------------------- /.github/workflows/ruff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/.github/workflows/ruff.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /annotated_logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/annotated_logger/__init__.py -------------------------------------------------------------------------------- /annotated_logger/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/annotated_logger/filter.py -------------------------------------------------------------------------------- /annotated_logger/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/annotated_logger/mocks.py -------------------------------------------------------------------------------- /annotated_logger/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/annotated_logger/plugins.py -------------------------------------------------------------------------------- /annotated_logger/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/example/actions.py -------------------------------------------------------------------------------- /example/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/example/api.py -------------------------------------------------------------------------------- /example/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/example/calculator.py -------------------------------------------------------------------------------- /example/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/example/default.py -------------------------------------------------------------------------------- /example/invalid_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/example/invalid_order.py -------------------------------------------------------------------------------- /example/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/example/logging_config.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/requirements/requirements-dev.txt -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/bootstrap_python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/script/bootstrap_python -------------------------------------------------------------------------------- /script/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/script/lint -------------------------------------------------------------------------------- /script/mutate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/script/mutate -------------------------------------------------------------------------------- /script/mutmut_runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/script/mutmut_runner -------------------------------------------------------------------------------- /script/sort_wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/script/sort_wordlist -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/script/test -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/test/demo.py -------------------------------------------------------------------------------- /test/test_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/test/test_decorator.py -------------------------------------------------------------------------------- /test/test_logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/test/test_logging_config.py -------------------------------------------------------------------------------- /test/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/test/test_memory.py -------------------------------------------------------------------------------- /test/test_mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/test/test_mocks.py -------------------------------------------------------------------------------- /test/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/annotated-logger/HEAD/test/test_plugins.py --------------------------------------------------------------------------------