Skip to content

Instantly share code, notes, and snippets.

@giftbott
Last active August 29, 2015 14:20
Show Gist options
  • Select an option

  • Save giftbott/1eaa46eed8eab4458fd5 to your computer and use it in GitHub Desktop.

Select an option

Save giftbott/1eaa46eed8eab4458fd5 to your computer and use it in GitHub Desktop.
django error log trace
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
# Include the default Django email handler for errors
# This is what you'd get without configuring logging at all.
'mail_admins': {
'class': 'django.utils.log.AdminEmailHandler',
'level': 'ERROR',
# But the emails are plain text by default - HTML is nicer
'include_html': True,
},
# Log to a text file that can be rotated by logrotate
'logfile': {
'class': 'logging.handlers.WatchedFileHandler',
'filename': '/var/log/django/myapp.log'
},
},
'loggers': {
# Again, default Django configuration to email unhandled exceptions
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
# Might as well log any errors anywhere else in Django
'django': {
'handlers': ['logfile'],
'level': 'ERROR',
'propagate': False,
},
# Your own app - this assumes all your logger names start with "myapp."
'myapp': {
'handlers': ['logfile'],
'level': 'WARNING', # Or maybe INFO or DEBUG
'propagate': False
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment