From 01d0593cb4a5017c590fa02d98b394cc14007506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matheus=20Gaudencio=20do=20R=C3=AAgo?= Date: Tue, 17 Dec 2024 14:06:29 -0300 Subject: [PATCH] Update fileSystem.ts (#878) Ignore log errors --- runtime/caches/fileSystem.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/caches/fileSystem.ts b/runtime/caches/fileSystem.ts index ee5bff620..8fc0a03d0 100644 --- a/runtime/caches/fileSystem.ts +++ b/runtime/caches/fileSystem.ts @@ -113,7 +113,6 @@ function createFileSystemCache(): CacheStorage { await Deno.remove(filePath); return true; } catch (err) { - logger.error(`error when deleting from file system, ${err}`); return false; } }