├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config-ci.yaml ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AUTHORS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENCE ├── README.md ├── SECURITY.md ├── django_logging ├── __init__.py ├── apps.py ├── constants │ ├── __init__.py │ ├── ansi_colors.py │ ├── config_types.py │ ├── date_format_directives.py │ ├── default_settings.py │ ├── log_format_options.py │ ├── log_format_specifiers.py │ └── required_email_settings.py ├── contextvar │ ├── __init__.py │ └── contextvar_manager.py ├── decorators │ ├── __init__.py │ └── execution_tracking.py ├── filters │ ├── __init__.py │ ├── context_filter.py │ └── log_level_filter.py ├── formatters │ ├── __init__.py │ ├── base.py │ ├── colored_formatter.py │ ├── flat_formatter.py │ ├── json_formatter.py │ └── xml_formatter.py ├── handlers │ ├── __init__.py │ └── email_handler.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── generate_pretty_json.py │ │ ├── generate_pretty_xml.py │ │ ├── logs_size_audit.py │ │ └── send_logs.py ├── middleware │ ├── __init__.py │ ├── base.py │ ├── monitor_log_size.py │ └── request_middleware.py ├── settings │ ├── __init__.py │ ├── checks.py │ ├── conf.py │ └── manager.py ├── static │ └── LogiBoard │ │ ├── css │ │ ├── app.css │ │ └── error_response.css │ │ ├── imgs │ │ ├── Lazarus.jpeg │ │ ├── close-50.png │ │ ├── done-50.png │ │ ├── exclamation-mark.png │ │ ├── file-icon.png │ │ ├── folder-icon.png │ │ ├── json-icon.png │ │ ├── multiply-50.png │ │ ├── open-50.png │ │ ├── pause-50.png │ │ ├── search-icon.png │ │ ├── stop-50.png │ │ ├── txt-icon.png │ │ ├── upload-to-cloud-50.png │ │ └── xml-icon.png │ │ └── js │ │ └── scripts.js ├── templates │ ├── email_notifier_template.html │ ├── error_response.html │ └── log_iboard.html ├── tests │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ ├── test_generate_pretty_json.py │ │ ├── test_generate_pretty_xml.py │ │ ├── test_logs_size_audit.py │ │ └── test_send_logs.py │ ├── conftest.py │ ├── constants.py │ ├── contextvar │ │ ├── __init__.py │ │ └── test_contextvar_manager.py │ ├── decorators │ │ ├── __init__.py │ │ └── test_execution_tracking.py │ ├── filters │ │ ├── __init__.py │ │ └── test_log_level_filter.py │ ├── fixtures │ │ ├── __init__.py │ │ ├── commands_fixture.py │ │ ├── conf_fixture.py │ │ ├── email_handler_fixture.py │ │ ├── email_notifier_fixture.py │ │ ├── email_settings_fixture.py │ │ ├── formatters.py │ │ ├── log_and_notify_fixture.py │ │ ├── log_record_fixture.py │ │ ├── logger_fixture.py │ │ ├── request_middleware_fixture.py │ │ ├── settings_fixture.py │ │ └── views_fixture.py │ ├── formatters │ │ ├── __init__.py │ │ ├── test_base_formatter.py │ │ ├── test_colored_formatter.py │ │ ├── test_flat_line_formatter.py │ │ ├── test_json_formatter.py │ │ └── test_xml_formatter.py │ ├── handlers │ │ ├── __init__.py │ │ └── test_email_handler.py │ ├── middleware │ │ ├── __init__.py │ │ ├── test_base_middleware.py │ │ ├── test_monitor_log_size.py │ │ └── test_request_middleware.py │ ├── settings │ │ ├── __init__.py │ │ ├── test_checks.py │ │ └── test_conf.py │ ├── setup.py │ ├── utils │ │ ├── __init__.py │ │ ├── test_context_manager.py │ │ ├── test_email_notifier.py │ │ ├── test_get_conf.py │ │ ├── test_log_and_notify.py │ │ ├── test_process_file.py │ │ └── test_set_conf.py │ ├── validators │ │ ├── __init__.py │ │ ├── test_config_validators.py │ │ └── test_email_settings_validator.py │ └── views │ │ ├── __init__.py │ │ └── test_log_iboard.py ├── urls.py ├── utils │ ├── __init__.py │ ├── command │ │ ├── __init__.py │ │ └── process_file.py │ ├── console_colorizer.py │ ├── context_manager.py │ ├── get_conf.py │ ├── log_email_notifier │ │ ├── __init__.py │ │ ├── log_and_notify.py │ │ └── notifier.py │ ├── set_conf.py │ └── time.py ├── validators │ ├── __init__.py │ ├── config_validators.py │ └── email_settings_validator.py └── views │ ├── __init__.py │ └── log_iboard.py ├── docs ├── Makefile ├── conf.py ├── contributing.rst ├── index.rst ├── log_iboard.rst ├── make.bat ├── quick_start.rst ├── rules.rst ├── settings.rst └── usage.rst ├── packages ├── requirements-dev.txt └── requirements.txt ├── poetry.lock ├── pyproject.toml └── tox.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/.pre-commit-config-ci.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/SECURITY.md -------------------------------------------------------------------------------- /django_logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/apps.py -------------------------------------------------------------------------------- /django_logging/constants/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/constants/__init__.py -------------------------------------------------------------------------------- /django_logging/constants/ansi_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/constants/ansi_colors.py -------------------------------------------------------------------------------- /django_logging/constants/config_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/constants/config_types.py -------------------------------------------------------------------------------- /django_logging/constants/date_format_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/constants/date_format_directives.py -------------------------------------------------------------------------------- /django_logging/constants/default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/constants/default_settings.py -------------------------------------------------------------------------------- /django_logging/constants/log_format_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/constants/log_format_options.py -------------------------------------------------------------------------------- /django_logging/constants/log_format_specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/constants/log_format_specifiers.py -------------------------------------------------------------------------------- /django_logging/constants/required_email_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/constants/required_email_settings.py -------------------------------------------------------------------------------- /django_logging/contextvar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/contextvar/__init__.py -------------------------------------------------------------------------------- /django_logging/contextvar/contextvar_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/contextvar/contextvar_manager.py -------------------------------------------------------------------------------- /django_logging/decorators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/decorators/__init__.py -------------------------------------------------------------------------------- /django_logging/decorators/execution_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/decorators/execution_tracking.py -------------------------------------------------------------------------------- /django_logging/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/filters/__init__.py -------------------------------------------------------------------------------- /django_logging/filters/context_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/filters/context_filter.py -------------------------------------------------------------------------------- /django_logging/filters/log_level_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/filters/log_level_filter.py -------------------------------------------------------------------------------- /django_logging/formatters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/formatters/__init__.py -------------------------------------------------------------------------------- /django_logging/formatters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/formatters/base.py -------------------------------------------------------------------------------- /django_logging/formatters/colored_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/formatters/colored_formatter.py -------------------------------------------------------------------------------- /django_logging/formatters/flat_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/formatters/flat_formatter.py -------------------------------------------------------------------------------- /django_logging/formatters/json_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/formatters/json_formatter.py -------------------------------------------------------------------------------- /django_logging/formatters/xml_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/formatters/xml_formatter.py -------------------------------------------------------------------------------- /django_logging/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/handlers/__init__.py -------------------------------------------------------------------------------- /django_logging/handlers/email_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/handlers/email_handler.py -------------------------------------------------------------------------------- /django_logging/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/management/commands/generate_pretty_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/management/commands/generate_pretty_json.py -------------------------------------------------------------------------------- /django_logging/management/commands/generate_pretty_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/management/commands/generate_pretty_xml.py -------------------------------------------------------------------------------- /django_logging/management/commands/logs_size_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/management/commands/logs_size_audit.py -------------------------------------------------------------------------------- /django_logging/management/commands/send_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/management/commands/send_logs.py -------------------------------------------------------------------------------- /django_logging/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/middleware/__init__.py -------------------------------------------------------------------------------- /django_logging/middleware/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/middleware/base.py -------------------------------------------------------------------------------- /django_logging/middleware/monitor_log_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/middleware/monitor_log_size.py -------------------------------------------------------------------------------- /django_logging/middleware/request_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/middleware/request_middleware.py -------------------------------------------------------------------------------- /django_logging/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/settings/__init__.py -------------------------------------------------------------------------------- /django_logging/settings/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/settings/checks.py -------------------------------------------------------------------------------- /django_logging/settings/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/settings/conf.py -------------------------------------------------------------------------------- /django_logging/settings/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/settings/manager.py -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/css/app.css -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/css/error_response.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/css/error_response.css -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/Lazarus.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/Lazarus.jpeg -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/close-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/close-50.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/done-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/done-50.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/exclamation-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/exclamation-mark.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/file-icon.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/folder-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/folder-icon.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/json-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/json-icon.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/multiply-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/multiply-50.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/open-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/open-50.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/pause-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/pause-50.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/search-icon.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/stop-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/stop-50.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/txt-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/txt-icon.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/upload-to-cloud-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/upload-to-cloud-50.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/imgs/xml-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/imgs/xml-icon.png -------------------------------------------------------------------------------- /django_logging/static/LogiBoard/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/static/LogiBoard/js/scripts.js -------------------------------------------------------------------------------- /django_logging/templates/email_notifier_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/templates/email_notifier_template.html -------------------------------------------------------------------------------- /django_logging/templates/error_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/templates/error_response.html -------------------------------------------------------------------------------- /django_logging/templates/log_iboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/templates/log_iboard.html -------------------------------------------------------------------------------- /django_logging/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/commands/test_generate_pretty_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/commands/test_generate_pretty_json.py -------------------------------------------------------------------------------- /django_logging/tests/commands/test_generate_pretty_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/commands/test_generate_pretty_xml.py -------------------------------------------------------------------------------- /django_logging/tests/commands/test_logs_size_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/commands/test_logs_size_audit.py -------------------------------------------------------------------------------- /django_logging/tests/commands/test_send_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/commands/test_send_logs.py -------------------------------------------------------------------------------- /django_logging/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/conftest.py -------------------------------------------------------------------------------- /django_logging/tests/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/constants.py -------------------------------------------------------------------------------- /django_logging/tests/contextvar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/contextvar/test_contextvar_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/contextvar/test_contextvar_manager.py -------------------------------------------------------------------------------- /django_logging/tests/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/decorators/test_execution_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/decorators/test_execution_tracking.py -------------------------------------------------------------------------------- /django_logging/tests/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/filters/test_log_level_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/filters/test_log_level_filter.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/__init__.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/commands_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/commands_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/conf_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/conf_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/email_handler_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/email_handler_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/email_notifier_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/email_notifier_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/email_settings_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/email_settings_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/formatters.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/log_and_notify_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/log_and_notify_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/log_record_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/log_record_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/logger_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/logger_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/request_middleware_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/request_middleware_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/settings_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/settings_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/fixtures/views_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/fixtures/views_fixture.py -------------------------------------------------------------------------------- /django_logging/tests/formatters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/formatters/test_base_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/formatters/test_base_formatter.py -------------------------------------------------------------------------------- /django_logging/tests/formatters/test_colored_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/formatters/test_colored_formatter.py -------------------------------------------------------------------------------- /django_logging/tests/formatters/test_flat_line_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/formatters/test_flat_line_formatter.py -------------------------------------------------------------------------------- /django_logging/tests/formatters/test_json_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/formatters/test_json_formatter.py -------------------------------------------------------------------------------- /django_logging/tests/formatters/test_xml_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/formatters/test_xml_formatter.py -------------------------------------------------------------------------------- /django_logging/tests/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/handlers/test_email_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/handlers/test_email_handler.py -------------------------------------------------------------------------------- /django_logging/tests/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/middleware/test_base_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/middleware/test_base_middleware.py -------------------------------------------------------------------------------- /django_logging/tests/middleware/test_monitor_log_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/middleware/test_monitor_log_size.py -------------------------------------------------------------------------------- /django_logging/tests/middleware/test_request_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/middleware/test_request_middleware.py -------------------------------------------------------------------------------- /django_logging/tests/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/settings/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/settings/test_checks.py -------------------------------------------------------------------------------- /django_logging/tests/settings/test_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/settings/test_conf.py -------------------------------------------------------------------------------- /django_logging/tests/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/setup.py -------------------------------------------------------------------------------- /django_logging/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/utils/test_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/utils/test_context_manager.py -------------------------------------------------------------------------------- /django_logging/tests/utils/test_email_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/utils/test_email_notifier.py -------------------------------------------------------------------------------- /django_logging/tests/utils/test_get_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/utils/test_get_conf.py -------------------------------------------------------------------------------- /django_logging/tests/utils/test_log_and_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/utils/test_log_and_notify.py -------------------------------------------------------------------------------- /django_logging/tests/utils/test_process_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/utils/test_process_file.py -------------------------------------------------------------------------------- /django_logging/tests/utils/test_set_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/utils/test_set_conf.py -------------------------------------------------------------------------------- /django_logging/tests/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/validators/test_config_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/validators/test_config_validators.py -------------------------------------------------------------------------------- /django_logging/tests/validators/test_email_settings_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/validators/test_email_settings_validator.py -------------------------------------------------------------------------------- /django_logging/tests/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/tests/views/test_log_iboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/tests/views/test_log_iboard.py -------------------------------------------------------------------------------- /django_logging/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/urls.py -------------------------------------------------------------------------------- /django_logging/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/utils/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/utils/command/process_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/utils/command/process_file.py -------------------------------------------------------------------------------- /django_logging/utils/console_colorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/utils/console_colorizer.py -------------------------------------------------------------------------------- /django_logging/utils/context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/utils/context_manager.py -------------------------------------------------------------------------------- /django_logging/utils/get_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/utils/get_conf.py -------------------------------------------------------------------------------- /django_logging/utils/log_email_notifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/utils/log_email_notifier/log_and_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/utils/log_email_notifier/log_and_notify.py -------------------------------------------------------------------------------- /django_logging/utils/log_email_notifier/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/utils/log_email_notifier/notifier.py -------------------------------------------------------------------------------- /django_logging/utils/set_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/utils/set_conf.py -------------------------------------------------------------------------------- /django_logging/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/utils/time.py -------------------------------------------------------------------------------- /django_logging/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/validators/config_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/validators/config_validators.py -------------------------------------------------------------------------------- /django_logging/validators/email_settings_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/validators/email_settings_validator.py -------------------------------------------------------------------------------- /django_logging/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_logging/views/log_iboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/django_logging/views/log_iboard.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/log_iboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/docs/log_iboard.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quick_start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/docs/quick_start.rst -------------------------------------------------------------------------------- /docs/rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/docs/rules.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /packages/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/packages/requirements-dev.txt -------------------------------------------------------------------------------- /packages/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/packages/requirements.txt -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus-org/django_logging/HEAD/tox.ini --------------------------------------------------------------------------------