From b4cd1d0daed41d8a6def33e234920ed524277572 Mon Sep 17 00:00:00 2001 From: Abhinav Date: Thu, 11 Jan 2024 09:51:16 +0530 Subject: [PATCH] add log --- src/services/diskLRU.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/services/diskLRU.ts b/src/services/diskLRU.ts index 4a74e5609..263b93574 100644 --- a/src/services/diskLRU.ts +++ b/src/services/diskLRU.ts @@ -58,6 +58,7 @@ class DiskLRUService { } catch (e) { if (e.code === 'ENOENT') return; logError(e, 'Failed to evict least recently used'); + // ignoring the error, as it would retried on the next run } this.evictLeastRecentlyUsed(cacheDir, maxSize); }