change default logging config to display tracebacks in console (#22975)

This commit is contained in:
Emmanuel Cazenave 2018-04-04 15:30:47 +02:00
parent 83538621c3
commit 0d342a8d79
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,11 @@ LOGGING = {
'': {
'handlers': ['console'],
'level': 'DEBUG'
},
'django.request': {
'handlers': ['console'],
'propagate': True,
'level': 'DEBUG',
}
},
'version': 1