Skip to content

rehive/drf-request-logging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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