Created
May 17, 2016 11:35
-
-
Save mitchellrj/ccf2e36da3753f6a1749901ffcf98850 to your computer and use it in GitHub Desktop.
Show all queries in console for Django
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOGGING = { | |
'handlers': { | |
'console': { | |
# ... | |
}, | |
# ... | |
}, | |
'loggers': { | |
'django.db.backends': { | |
'handlers': ['console'], | |
'level': 'DEBUG', | |
'propagate': True, | |
}, | |
# ... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment