From 78400867a2c7fa9464567c8db6ba48ad2509e549 Mon Sep 17 00:00:00 2001 From: lb584 <lb584@cam.ac.uk> Date: Fri, 17 May 2024 11:06:33 +0100 Subject: [PATCH] changing minimum log level for handlers to debug --- configs/logger/template_log_config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configs/logger/template_log_config.json b/configs/logger/template_log_config.json index 2ad96de..25ba978 100644 --- a/configs/logger/template_log_config.json +++ b/configs/logger/template_log_config.json @@ -19,7 +19,7 @@ "handler_project": { "class": "logging.handlers.TimedRotatingFileHandler", "formatter": "simple", - "level": "INFO", + "level": "DEBUG", "filters": [ "mask_passwords" ], @@ -30,7 +30,7 @@ "handler_job": { "class": "logging.FileHandler", "formatter": "simple", - "level": "INFO", + "level": "DEBUG", "filters": [ "mask_passwords" ], @@ -39,7 +39,7 @@ "handler_stderr": { "class": "logging.StreamHandler", "formatter": "simple", - "level": "INFO", + "level": "DEBUG", "filters": [ "mask_passwords" ] -- GitLab