Django middleware that logs http request body.
Project description
django-request-logging
Plug django-request-logging into your Django project and you will have intuitive and color coded request/response payload logging, for both web requests and API requests. Supports Django 1.8+.
Installing
$ pip install django-request-logging
Then add request_logging.middleware.LoggingMiddleware
to your MIDDLEWARE
.
For example:
MIDDLEWARE = (
...,
'request_logging.middleware.LoggingMiddleware',
...,
)
And configure logging in your app:
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'console': {
'class': 'logging.StreamHandler',
},
},
'loggers': {
'django.request': {
'handlers': ['console'],
'level': 'DEBUG', # change debug level as appropiate
'propagate': False,
},
},
}
Details
Most of times you don't have to care about these details. But in case you need to dig deep:
- All logs are configured using logger name "django.request".
- If HTTP status code is between 400 - 599, URIs are logged at ERROR level, otherwise they are logged at INFO level.
- If HTTP status code is between 400 - 599, data are logged at ERROR level, otherwise they are logged at DEBUG level.
See REQUEST_LOGGING_HTTP_4XX_LOG_LEVEL
setting to override this.
A no_logging
decorator is included for views with sensitive data.
Django settings
You can customized some behaves of django-request-logging by following settings in Django settings.py
.
REQUEST_LOGGING_DATA_LOG_LEVEL
By default, data will log in DEBUG level, you can change to other valid level (Ex. logging.INFO) if need.
REQUEST_LOGGING_ENABLE_COLORIZE
If you want to log into log file instead of console, you may want to remove ANSI color. You can set REQUEST_LOGGING_ENABLE_COLORIZE=False
to disable colorize.
REQUEST_LOGGING_DISABLE_COLORIZE (Deprecated)
This legacy setting will still available, but you should't use this setting anymore. You should use REQUEST_LOGGING_ENABLE_COLORIZE
instead.
We keep this settings for backward compatibility.
REQUEST_LOGGING_MAX_BODY_LENGTH
By default, max length of a request body and a response content is cut to 50000 characters.
REQUEST_LOGGING_HTTP_4XX_LOG_LEVEL
By default, HTTP status codes between 400 - 499 are logged at ERROR level. You can set REQUEST_LOGGING_HTTP_4XX_LOG_LEVEL=logging.WARNING
(etc) to override this.
If you set REQUEST_LOGGING_HTTP_4XX_LOG_LEVEL=logging.INFO
they will be logged the same as normal requests.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for django-request-logging-0.7.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56a269cdad83ef0332adc5e3438b19822b225458884ced98308d0a7237137962 |
|
MD5 | 0c06680100fe7437ba74b767d0f48c2d |
|
BLAKE2b-256 | ed4b48aa535c90efed8aba951d4d36e570c1f471433f1c37834c5c0a71924220 |
Hashes for django_request_logging-0.7.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17e8f536fe0209f2f17c499ae32bed0aa64955fda063e167f36361ac2bed4e05 |
|
MD5 | 2362c4de01970bd98cb9bfe2dadf9c92 |
|
BLAKE2b-256 | 7ee9da4f1260d37bd078f95bf86b311e3cd39f57709f00472ac579b768645660 |