From aff5ceef31a19f950a1e57a252675227028f65ae Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 18 Apr 2025 13:15:11 -0500 Subject: [PATCH] Remove NHL-specific logging from display controller --- src/display_controller.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/display_controller.py b/src/display_controller.py index 42cf9d0c..af82ada8 100644 --- a/src/display_controller.py +++ b/src/display_controller.py @@ -15,10 +15,6 @@ logging.basicConfig( format='%(levelname)s:%(name)s:%(message)s' ) -# Set NHL logger to INFO level to reduce spam -nhl_logger = logging.getLogger('NHL') -nhl_logger.setLevel(logging.INFO) - logger = logging.getLogger(__name__) class DisplayController: @@ -145,13 +141,10 @@ class DisplayController: self.stocks.display_stocks(force_clear=self.force_clear) elif self.current_display_mode == 'nhl_live' and self.nhl_live: - logger.info("Calling NHLLiveManager.display()") self.nhl_live.display(force_clear=self.force_clear) elif self.current_display_mode == 'nhl_recent' and self.nhl_recent: - logger.info("Calling NHLRecentManager.display()") self.nhl_recent.display(force_clear=self.force_clear) elif self.current_display_mode == 'nhl_upcoming' and self.nhl_upcoming: - logger.info("Calling NHLUpcomingManager.display()") self.nhl_upcoming.display(force_clear=self.force_clear) elif self.current_display_mode == 'stock_news' and self.news: