debian_config_common: force INFO level on django.template logging (#29239)

This commit is contained in:
Thomas NOËL 2018-12-21 14:43:35 +01:00
parent 7bd28f8967
commit 513db18396
1 changed files with 6 additions and 0 deletions

View File

@ -121,6 +121,12 @@ LOGGING = {
'level': 'NOTSET',
'propagate': True,
},
'django.template': {
# too much logs on DEBUG level
'handlers': [],
'level': 'INFO',
'propagate': True,
},
# log sentry failures to syslog
'sentry.errors': {
'handlers': ['syslog'],