From bcddb43bdfd370b1c2e0699aaa32c6df4b90a3a3 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Thu, 10 Oct 2024 22:39:27 +0200 Subject: [PATCH] Minor logging adaption --- main/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/settings.py b/main/settings.py index 7eeb186..6f56613 100644 --- a/main/settings.py +++ b/main/settings.py @@ -202,7 +202,7 @@ if SECRET_KEY is None: # Logging Configuration # ROOT_LOGGER_NAME = os.path.basename(os.path.dirname(__file__)) -default_handler = ['socket'] if DEBUG else ['console'] +default_handler = ['socket', 'console'] if DEBUG else ['console'] class DjangoSocketHandler(_SocketHandler):