settings.py: add (commented) logging for sql queries

This commit is contained in:
2019-09-19 12:37:41 -07:00
parent dfa2a7d4a5
commit da41a912b0

View File

@ -83,6 +83,11 @@ LOGGING = {
'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
'propagate': True,
},
# 'django.db.backends': {
# 'level': 'DEBUG',
# 'handlers': ['console', 'file'],
# 'propagate': True,
# }
},
}