Skip to content

Instantly share code, notes, and snippets.

@jacobian
Created April 29, 2011 18:55
Show Gist options
  • Save jacobian/948805 to your computer and use it in GitHub Desktop.
Save jacobian/948805 to your computer and use it in GitHub Desktop.
LOGGING = {
...
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
},
...
},
'loggers': {
'django.db.backends': {
'handlers': ['console'],
'level': 'DEBUG',
},
...
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment