Skip to content

Commit 302f149

Browse files
authored
feat(core): Ignore additional common but inactionable errors (#12384)
1 parent be06745 commit 302f149

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/core/src/integrations/inboundfilters.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,12 @@ import { defineIntegration } from '../integration';
99
const DEFAULT_IGNORE_ERRORS = [
1010
/^Script error\.?$/,
1111
/^Javascript error: Script error\.? on line 0$/,
12-
/^ResizeObserver loop completed with undelivered notifications.$/,
13-
/^Cannot redefine property: googletag$/,
12+
/^ResizeObserver loop completed with undelivered notifications.$/, // The browser logs this when a ResizeObserver handler takes a bit longer. Usually this is not an actual issue though. It indicates slowness.
13+
/^Cannot redefine property: googletag$/, // This is thrown when google tag manager is used in combination with an ad blocker
14+
"undefined is not an object (evaluating 'a.L')", // Random error that happens but not actionable or noticeable to end-users.
15+
'can\'t redefine non-configurable property "solana"', // Probably a browser extension or custom browser (Brave) throwing this error
16+
"vv().getRestrictions is not a function. (In 'vv().getRestrictions(1,a)', 'vv().getRestrictions' is undefined)", // Error thrown by GTM, seemingly not affecting end-users
17+
"Can't find variable: _AutofillCallbackHandler", // Unactionable error in instagram webview https://developers.facebook.com/community/threads/320013549791141/
1418
];
1519

1620
/** Options for the InboundFilters integration */

0 commit comments

Comments
 (0)