Skip to content

Instantly share code, notes, and snippets.

@zealws
Created September 23, 2015 18:59
Show Gist options
  • Save zealws/5ad4e40c68bae9d800d1 to your computer and use it in GitHub Desktop.
Save zealws/5ad4e40c68bae9d800d1 to your computer and use it in GitHub Desktop.
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'file': {
'level': 'DEBUG',
'class': 'logging.FileHandler',
'filename': '/var/log/django.atcui.log',
},
},
'loggers': {
'django.request': {
'handlers': ['file'],
'level': 'DEBUG',
'propagate': True,
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment