Skip to content

Instantly share code, notes, and snippets.

@beatrizuezu
Created August 7, 2017 02:37
Show Gist options
  • Save beatrizuezu/deb68f559403ab9c0ad709c991d3e496 to your computer and use it in GitHub Desktop.
Save beatrizuezu/deb68f559403ab9c0ad709c991d3e496 to your computer and use it in GitHub Desktop.
De SQL para ORM Django / settings logger
...
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'console': {
'class': 'logging.StreamHandler',
},
},
'loggers': {
'django': {
'handlers': ['console'],
'level': 'DEBUG',
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment