Skip to content

Instantly share code, notes, and snippets.

@dstufft
Created November 9, 2011 20:47
Show Gist options
  • Save dstufft/1352959 to your computer and use it in GitHub Desktop.
Save dstufft/1352959 to your computer and use it in GitHub Desktop.
LOGGING = {
"version": 1,
"disable_existing_loggers": True,
"handlers": {
"mail_admins": {
"level": "ERROR",
"class": "django.utils.log.AdminEmailHandler"
},
},
"loggers": {
"django.request": {
"handlers": ["mail_admins"],
"level": "ERROR",
"propagate": True,
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment