From 0410374dcdaa22bd2724e061a0f330ffeeddaeac Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Tue, 22 Apr 2025 10:49:14 -0500 Subject: [PATCH] Reduce logging noise by changing calendar manager log level to INFO --- src/calendar_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calendar_manager.py b/src/calendar_manager.py index 8a6769a6..f0ef43de 100644 --- a/src/calendar_manager.py +++ b/src/calendar_manager.py @@ -16,7 +16,7 @@ import time # Configure logger for this module logger = logging.getLogger(__name__) -logger.setLevel(logging.DEBUG) # Set to DEBUG to see all messages +logger.setLevel(logging.INFO) # Set to INFO to reduce noise class CalendarManager: def __init__(self, matrix, canvas, config):