[mailman3] Clear logging section of settings.py

Signed-off-by: Michal Konecny <mkonecny@redhat.com>
This commit is contained in:
Michal Konecny 2024-03-28 17:02:17 +01:00
parent 25d4ecaa55
commit b9f50bbcd2

View file

@ -349,21 +349,11 @@ LOGGING = {
}, },
}, },
'loggers': { 'loggers': {
'django.request': { 'django': {
'handlers': [ 'handlers': [
'file', 'file',
# Don't send an email on server errors, there's just too many
#{% if env == 'production' %}
#'mail_admins',
#{% endif %}
#
], ],
'level': 'DEBUG', 'level': 'INFO',
},
'django.security.DisallowedHost': {
'handlers': ['null'],
'propagate': False,
}, },
'requests.packages.urllib3': { 'requests.packages.urllib3': {
'level': 'WARNING', 'level': 'WARNING',