Turning off django's db logging in console.

This commit is contained in:
Samuel Clay 2021-01-12 14:47:16 -05:00
parent 1baa7b6e22
commit 9accbf83c1

View file

@ -206,7 +206,7 @@ LOGGING = {
},
'django.db.backends': {
'handlers': ['console'],
'level': 'DEBUG',
'level': 'INFO',
'propagate': False,
},
'django.security.DisallowedHost': {