Reduce logging noise by changing calendar manager log level to INFO

This commit is contained in:
ChuckBuilds
2025-04-22 10:49:14 -05:00
parent f303ea69b5
commit 0410374dcd

View File

@@ -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):