Package with decorators for views
Project description
View logger
View Logger is a decorators for Django views. It allows you to collect basic information about the user who made the request and about errors.
Quick start
-
Create empty dir
logs
in the root of your project -
Create
logging
configuration in your setting. By default,view-logger
useserror_logger
andinfo_logger
. These two loggers should be in the logging settings.
LOGGING = {
'version': 1,
'formatters': {
...
},
'handlers': {
...
},
'loggers': {
'info_logger': {
...
},
'error_logger': {
...
},
},
}
- Import from
view_logger
decorators:log_wrapper
orhttp_logger
log_wrapper
- Decorator for logging unhandled errors.
http_logger
- Decorator for logging user`s information and unhandled errors.
Extra tuning
You can specify additional keys in the settings for additional configuration.
HTTP_ERROR_LOGGER
- you can set your custom logger name for using. Default is error_logger
.
HTTP_INFO_LOGGER
- you can set your custom logger name for using. Default is info_logger
.
USER_OBJECT
- for use other then django user object in request. Default is user
.
If you want to change the object where the user data comes from, you must set user-like object in request
object.
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
File details
Details for the file view-logger-1.0.tar.gz
.
File metadata
- Download URL: view-logger-1.0.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fff6fe8424371ead3b17038ec5d22ca7a7806d1f9ab2a5b1fb2e8e0bc5d80b15 |
|
MD5 | 6155ed6940a3fbae6eac5cbb8e668c4c |
|
BLAKE2b-256 | 12a03808a8f3dc7f44ba709060e6de79e834eaf1f7ea6f87e98b51bce95b2903 |