Separate logging from class based view business code
Project description
Django loggable util
An utility to create logs for request and response while keeping business code clean for class based views.
Motivation
By using generic view, we can write a view as concise as this:
class SomeModelCreateView(LoginRequiredMixin, CreateView):
model = SomeModel
As we can see there is no place where we can write logger.info(...). It won't be pretty to override some methods in the view just for printing logs.
It would make sense if there is already some overridden method in the view, then we could've put the logger
method there. That's why this package is created to quickly enable request and response logs for class based views.
Installation
pip install djang-loggable-util
Example usage
Import the Loggable class in your urls.py
from django_loggable_util import Loggable
Now write url configuration as this:
urlpatterns=[
...
path('someurl', Loggable(SomeCBView).as_view(),name='some-url-name'),
...
]
You can pass usual parameters like template_name etc, in as_view() function.
This will result in logs like this for every request response cycle:
INFO | 2020-08-17 09:10:12.764 | {'request': {'method': 'GET', 'path': '/someurl', 'username': 'someuser', 'params': <QueryDict: {'somekey':'someval'}>}}
INFO | 2020-08-17 09:10:12.777 | {'response': {'username': 'someuser', 'status_code': 200, 'template': ['sometemplate.html']}}
A default configuration is embedded with this package:
default_log_config = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'request_response_formatter': {
'format': '%(levelname)s | %(asctime)s.%(msecs)03d | %(message)s',
'datefmt': "%Y-%m-%d %H:%M:%S",
}
},
'handlers': {
'request_response_console': {
'level': 'INFO',
'class': 'logging.StreamHandler',
'formatter': 'request_response_formatter'
}
},
'loggers': {
'request_response': {
'handlers': ['request_response_console'],
'level': 'INFO',
'propagate': False
}
}
}
This configuration streams logs to console. When it is needed to stream logs to files or any other service,
you can add that logging configuration in settings.py and provide logger name to use for this library like this:
LOGGABLE_LOGGER='your_logger_name'
Todos
- Write Tests
- Support DRF
- Support FBV
License
MIT
Free Software, Hell Yeah!
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_loggable_util-0.0.4.tar.gz.
File metadata
- Download URL: django_loggable_util-0.0.4.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50501aeb2c465810f6febf80c680ef647d9ca4bb4944cbd812da0c3ff2604088
|
|
| MD5 |
a4231313fd51563a7e962d15757ba298
|
|
| BLAKE2b-256 |
8b647f3ff634b7c0652731d2b62b81f9f6093b696337a756b0d0cd428ee52399
|
File details
Details for the file django_loggable_util-0.0.4-py3-none-any.whl.
File metadata
- Download URL: django_loggable_util-0.0.4-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7771dac201f6cafbfddc75776e13d5bd071fd9e33ab92d79a75592938a66ce8
|
|
| MD5 |
15b4d268f589ccbf08a75878afc82f9e
|
|
| BLAKE2b-256 |
cc23a00451012d063f8932cb93bc1406abddbf322d2f3f3f51c97fca93b2b1fc
|