Skip to main content

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

  1. Create empty dir logs in the root of your project

  2. Create logging configuration in your setting. By default, view-logger uses error_logger and info_logger. These two loggers should be in the logging settings.

LOGGING = {
    'version': 1,
    'formatters': {
        ...
    },
    'handlers': {
        ...
    },
    'loggers': {
        'info_logger': {
            ...
        },
        'error_logger': {
            ...
        },
    },
}
  1. Import from view_logger decorators: log_wrapper or http_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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

view-logger-1.0.tar.gz (4.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page