Skip to content
Snippets Groups Projects
Commit 96997aee authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Add in the default django error logging to catch template errors

parent a8fdb945
No related branches found
No related tags found
No related merge requests found
...@@ -335,6 +335,11 @@ LOGGING = { ...@@ -335,6 +335,11 @@ LOGGING = {
'level': 'INFO', 'level': 'INFO',
'propagate': False, 'propagate': False,
}, },
'django': {
'handlers': ['console', 'sentry'],
'level': 'ERROR',
'propagate': False,
},
'django.request': { 'django.request': {
'handlers': ['console', 'sentry'], 'handlers': ['console', 'sentry'],
'level': 'WARNING', 'level': 'WARNING',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment