mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-07-01 18:37:27 -04:00
Remove debgging mesasge in cache
This commit is contained in:
@ -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:
|
||||||
|
Reference in New Issue
Block a user