Remove debgging mesasge in cache

This commit is contained in:
frédéric
2025-02-17 11:01:16 +01:00
parent c433a6c2d5
commit 393981e0ba

View File

@ -70,8 +70,8 @@ class Cache(plugins.Plugin):
for cache_file in cache_to_delete: for cache_file in cache_to_delete:
try: try:
cache_file.unlink() cache_file.unlink()
except Exception as e: except FileNotFoundError as e:
logging.error(f"[CACHE] Cannot delete {cache_file}: {e}") pass
def write_ap_cache(self, access_point): def write_ap_cache(self, access_point):
with self.lock: with self.lock: