From 45b941eb49c3c454d1a109904157076878f5a662 Mon Sep 17 00:00:00 2001 From: Tim Fish Date: Mon, 8 Apr 2024 12:16:44 +0200 Subject: [PATCH] fix(core): Don't log error from Inbound Filters integration --- packages/core/src/integrations/inboundfilters.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/core/src/integrations/inboundfilters.ts b/packages/core/src/integrations/inboundfilters.ts index 9c64476568c7..66eafcf4db40 100644 --- a/packages/core/src/integrations/inboundfilters.ts +++ b/packages/core/src/integrations/inboundfilters.ts @@ -155,10 +155,6 @@ function _getPossibleEventMessages(event: Event): string[] { } } - if (DEBUG_BUILD && possibleMessages.length === 0) { - logger.error(`Could not extract message for event ${getEventDescription(event)}`); - } - return possibleMessages; }