From 8d0f5534ef662976857915061c2b5d49e8dbcc2a Mon Sep 17 00:00:00 2001 From: Karl Cardenas Date: Tue, 16 Jul 2024 14:50:42 -0700 Subject: [PATCH] chore: fixes MIME error output --- plugins/packs-integrations.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/packs-integrations.js b/plugins/packs-integrations.js index 3dabc07ef3..91618c8ea1 100644 --- a/plugins/packs-integrations.js +++ b/plugins/packs-integrations.js @@ -361,10 +361,7 @@ async function getLogoUrl(packsAllData, logoUrlMap) { } } } catch (e) { - logger.error( - `An error occurred while fetching the logo for the pack, ${packName}. Additional context follows : \n`, - e - ); + // Intentionally ignoring errors here to continue processing other logos } } }