From 4042146ba9122dfc18bc15c7eed374dd0fe5239b Mon Sep 17 00:00:00 2001 From: VALLONGOL Date: Tue, 3 Jun 2025 07:47:00 +0200 Subject: [PATCH] fix flight details gui --- flightmonitor/map/map_manager.py | 2 +- flightmonitor/map/map_tile_manager.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flightmonitor/map/map_manager.py b/flightmonitor/map/map_manager.py index 559fe58..216c92d 100644 --- a/flightmonitor/map/map_manager.py +++ b/flightmonitor/map/map_manager.py @@ -230,7 +230,7 @@ class MapTileManager: try: with self._cache_access_lock: if tile_cache_path.is_file(): - logger.info( + logger.debug( f"Cache hit for tile {tile_coordinates_log_str}. Loading from disk." ) if Image: diff --git a/flightmonitor/map/map_tile_manager.py b/flightmonitor/map/map_tile_manager.py index 5bbea22..ec04966 100644 --- a/flightmonitor/map/map_tile_manager.py +++ b/flightmonitor/map/map_tile_manager.py @@ -193,7 +193,7 @@ class MapTileManager: try: with self._cache_access_lock: if tile_cache_path.is_file(): - logger.info( + logger.debug( f"Cache hit for tile {tile_coordinates_log_str}. Loading from disk." ) if Image: