From bc7556596999b5ddfcf9a2d94a65e860a063cb61 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Wed, 19 Aug 2020 13:27:50 +0000 Subject: [PATCH] Changed the default LOGGING setup to avoid logging to syslog, as it may not be available in all enviroments. - Legacy-Id: 18382 --- ietf/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ietf/settings.py b/ietf/settings.py index 1919130ec..d533dfccf 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -228,7 +228,7 @@ LOGGING = { 'level': 'INFO', }, 'django.request': { - 'handlers': ['debug_console', 'syslog'], + 'handlers': ['debug_console'], 'level': 'ERROR', }, 'django.server': { @@ -236,11 +236,11 @@ LOGGING = { 'level': 'INFO', }, 'django.security': { - 'handlers': ['syslog', ], + 'handlers': ['debug_console', ], 'level': 'INFO', }, 'oidc_provider': { - 'handlers': ['syslog', 'console', ], + 'handlers': ['debug_console', ], 'level': 'DEBUG', }, },