Skip to content

Instantly share code, notes, and snippets.

@jacobian
Created June 15, 2011 18:16
Show Gist options
  • Save jacobian/1027716 to your computer and use it in GitHub Desktop.
Save jacobian/1027716 to your computer and use it in GitHub Desktop.
LOGGING = {
'version': 1,
'disable_existing_loggers': True,
'handlers': {
'console': {
'level': 'ERROR',
'class': 'logging.StreamHandler'
}
},
'loggers': {
'django.request': {
'handlers': ['console'],
'level': 'ERROR',
'propagate': False,
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment