remove log

This commit is contained in:
Abhinav 2022-08-10 15:25:02 +05:30
parent 52b344b4b1
commit 34d8c4e540

View file

@ -27,7 +27,6 @@ class DiskLRUService {
const leastRecentlyUsed = await this.findLeastRecentlyUsed( const leastRecentlyUsed = await this.findLeastRecentlyUsed(
cacheDir cacheDir
); );
console.log(leastRecentlyUsed);
await unlink(leastRecentlyUsed.path); await unlink(leastRecentlyUsed.path);
this.evictLeastRecentlyUsed(cacheDir, maxSize); this.evictLeastRecentlyUsed(cacheDir, maxSize);