fix flight details gui

This commit is contained in:
VALLONGOL 2025-06-03 07:47:00 +02:00
parent ef2d17f993
commit 4042146ba9
2 changed files with 2 additions and 2 deletions

View File

@ -230,7 +230,7 @@ class MapTileManager:
try: try:
with self._cache_access_lock: with self._cache_access_lock:
if tile_cache_path.is_file(): if tile_cache_path.is_file():
logger.info( logger.debug(
f"Cache hit for tile {tile_coordinates_log_str}. Loading from disk." f"Cache hit for tile {tile_coordinates_log_str}. Loading from disk."
) )
if Image: if Image:

View File

@ -193,7 +193,7 @@ class MapTileManager:
try: try:
with self._cache_access_lock: with self._cache_access_lock:
if tile_cache_path.is_file(): if tile_cache_path.is_file():
logger.info( logger.debug(
f"Cache hit for tile {tile_coordinates_log_str}. Loading from disk." f"Cache hit for tile {tile_coordinates_log_str}. Loading from disk."
) )
if Image: if Image: