Removed repeating console.log(s)

This commit is contained in:
gerlofvanek
2025-05-08 21:09:24 +02:00
parent 868b2475c1
commit ece9d7fb4b
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -328,7 +328,7 @@ const CacheManager = (function() {
.filter(key => isCacheKey(key))
.forEach(key => memoryCache.delete(key));
console.log("Cache cleared successfully");
//console.log("Cache cleared successfully");
return true;
},