We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c314bf6 commit 35209faCopy full SHA for 35209fa
src/index.tsx
@@ -21,11 +21,8 @@ Sentry.init({
21
22
// filter out blacklisted errors
23
if (error && error.message) {
24
- console.log("SENTRY ERR")
25
for (const filter of ignoreErrors) {
26
- console.log("SENTRY FILTER", filter)
27
if (error.message.match(filter)) {
28
- console.log("SENTRY MATCH", filter)
29
return null
30
}
31
0 commit comments