Skip to content

Instantly share code, notes, and snippets.

@iOS0x00
Created September 1, 2015 06:13
Show Gist options
  • Save iOS0x00/7b0d07d640ed8775a876 to your computer and use it in GitHub Desktop.
Save iOS0x00/7b0d07d640ed8775a876 to your computer and use it in GitHub Desktop.
Django调试ORM的日志配置
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
"console": {
'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