drf-request-logging

DRF Request Logging


License
MIT
Install
pip install drf-request-logging==0.0.16

Documentation

Rehive Logo

DRF Request logging

Request logging for Django REST Framework.

Quick start

  1. Install the package:
pip install drf-request-logging
  1. Add "drf_extra" to your INSTALLED_APPS settings like this:
INSTALLED_APPS = [
    ...
    'drf_request_logging',
]
  1. Run migrations:
manage.py migrate