settings: log errors to console

This commit is contained in:
Benjamin Dauvergne 2017-04-04 14:33:13 +02:00
parent cae5fe20ee
commit 58e6366967
1 changed files with 4 additions and 0 deletions

View File

@ -141,6 +141,10 @@ LOGGING = {
'level': 'INFO',
'handlers': ['console'],
},
'': {
'level': 'ERROR',
'handlers': ['console'],
},
}
}