From c9ab9a339b4a3dca80f193b87bca1ec022bae632 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Sat, 19 Jul 2025 17:12:57 -0500 Subject: [PATCH] reduce logging noise --- src/mlb_manager.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/mlb_manager.py b/src/mlb_manager.py index d638c4e6..9d3daee0 100644 --- a/src/mlb_manager.py +++ b/src/mlb_manager.py @@ -988,9 +988,7 @@ class MLBRecentManager(BaseMLBManager): def update(self): """Update recent games data.""" current_time = time.time() - self.logger.info(f"Checking for recent MLB games. Last update was at {self.last_update}") if self.last_update != 0 and (current_time - self.last_update < self.update_interval): - self.logger.info(f"Skipping recent games update, interval not reached. Next update in {self.update_interval - (current_time - self.last_update):.0f} seconds.") return try: @@ -1107,9 +1105,7 @@ class MLBUpcomingManager(BaseMLBManager): def update(self): """Update upcoming games data.""" current_time = time.time() - self.logger.info(f"Checking for upcoming MLB games. Last update was at {self.last_update}") if self.last_update != 0 and (current_time - self.last_update < self.update_interval): - self.logger.info(f"Skipping upcoming games update, interval not reached. Next update in {self.update_interval - (current_time - self.last_update):.0f} seconds.") return try: