From bbc9abc7b9a7313900877d2fc51336a166cdb0a6 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 10 Jan 2025 11:48:09 +0100 Subject: [PATCH] Pulled app/utils/cache_manager.py --- app/utils/cache_manager.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/utils/cache_manager.py b/app/utils/cache_manager.py index 6d5df0c..5c46765 100644 --- a/app/utils/cache_manager.py +++ b/app/utils/cache_manager.py @@ -23,7 +23,6 @@ class CacheManager: """ if not os.path.exists(self.cache_dir): os.makedirs(self.cache_dir) - print(f"Created cache directory: {self.cache_dir}") def clear_cache(self): """ @@ -34,7 +33,6 @@ class CacheManager: file_path = os.path.join(self.cache_dir, filename) if os.path.isfile(file_path): os.remove(file_path) - print(f"Deleted: {file_path}") def cache_file(self, file_url): """