├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── DEVELOPING.md ├── LICENSE ├── README.md ├── conftest.py ├── django-rich-logging.gif ├── django_rich_logging ├── __init__.py ├── logging.py └── objects.py ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ └── index.md ├── example ├── manage.py ├── project │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── www │ ├── __init__.py │ ├── apps.py │ ├── templates │ └── www │ │ └── index.html │ └── views.py ├── poetry.lock ├── py.typed ├── pyproject.toml └── tests ├── logging └── django_request_handler │ ├── test_add_column_headers.py │ ├── test_emit.py │ ├── test_get_markup.py │ └── test_init.py ├── objects └── test_request.py ├── templates └── tests │ └── index.html └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/conftest.py -------------------------------------------------------------------------------- /django-rich-logging.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/django-rich-logging.gif -------------------------------------------------------------------------------- /django_rich_logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_rich_logging/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/django_rich_logging/logging.py -------------------------------------------------------------------------------- /django_rich_logging/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/django_rich_logging/objects.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/example/project/settings.py -------------------------------------------------------------------------------- /example/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/example/project/urls.py -------------------------------------------------------------------------------- /example/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/example/project/wsgi.py -------------------------------------------------------------------------------- /example/www/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/www/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/example/www/apps.py -------------------------------------------------------------------------------- /example/www/templates/www/index.html: -------------------------------------------------------------------------------- 1 | index.html -------------------------------------------------------------------------------- /example/www/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/example/www/views.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/poetry.lock -------------------------------------------------------------------------------- /py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/logging/django_request_handler/test_add_column_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/tests/logging/django_request_handler/test_add_column_headers.py -------------------------------------------------------------------------------- /tests/logging/django_request_handler/test_emit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/tests/logging/django_request_handler/test_emit.py -------------------------------------------------------------------------------- /tests/logging/django_request_handler/test_get_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/tests/logging/django_request_handler/test_get_markup.py -------------------------------------------------------------------------------- /tests/logging/django_request_handler/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/tests/logging/django_request_handler/test_init.py -------------------------------------------------------------------------------- /tests/objects/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/tests/objects/test_request.py -------------------------------------------------------------------------------- /tests/templates/tests/index.html: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamghill/django-rich-logging/HEAD/tests/urls.py --------------------------------------------------------------------------------