Minor tweak to test logging

This commit is contained in:
Tomas Gavenciak 2015-10-25 12:31:21 +01:00
parent 8245897d00
commit e0430aad7c

View file

@ -201,7 +201,7 @@ LOGGING = {
'loggers': {
# Catch-all logger
'': {
'handlers': ['console'], # Add 'mail_admins' in prod (and test?)
'handlers': ['console'], # Add 'mail_admins' in prod and test
'level': 'DEBUG',
},
@ -210,7 +210,7 @@ LOGGING = {
'handlers': {
'console': {
'level': 'INFO', ## Set to 'DEBUG' in local (and test?)
'level': 'WARNING', ## Set to 'DEBUG' in local
'class': 'logging.StreamHandler',
'formatter': 'verbose',
},