From aaa6ed4be540ac40c30a7c1b85d29f5aa0d81d8d Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 23 May 2025 13:40:27 -0500 Subject: [PATCH] change music log output from info to debug --- src/display_controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/display_controller.py b/src/display_controller.py index de0b7475..85d10962 100644 --- a/src/display_controller.py +++ b/src/display_controller.py @@ -318,9 +318,9 @@ class DisplayController: # for reasons other than directly re-drawing the music screen (e.g., logging, global state). # For now, we'll keep it simple. If the music screen is active, it will redraw on its own. if track_info: - logger.info(f"DisplayController received music update (via callback): Title - {track_info.get('title')}, Playing - {track_info.get('is_playing')}") + logger.debug(f"DisplayController received music update (via callback): Title - {track_info.get('title')}, Playing - {track_info.get('is_playing')}") else: - logger.info("DisplayController received music update (via callback): Track is None or not playing.") + logger.debug("DisplayController received music update (via callback): Track is None or not playing.") # If the current display mode is music, the MusicManager's display method will be called # in the main loop and will use its own updated internal state. No explicit action needed here