Skip to content

Instantly share code, notes, and snippets.

@SeanOC
Created June 6, 2011 18:54
Show Gist options
  • Save SeanOC/1010827 to your computer and use it in GitHub Desktop.
Save SeanOC/1010827 to your computer and use it in GitHub Desktop.
LOGGING = {
'version': 1,
'formatters': {
'simple': {
'format': "%(levelname)s %(message)s",
},
},
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'simple',
},
},
'loggers': {
'RegistrationForms': {
'handlers': ['console'],
'level': 'DEBUG',
},
'SharpyClient': {
'handlers': ['console'],
'level': 'DEBUG',
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment