Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 508 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 508 Bytes

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