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 99d2fc9 commit bfe335aCopy full SHA for bfe335a
frontend/src/store.js
@@ -42,7 +42,8 @@ if (sentryDsn) {
42
normalizeDepth: 5,
43
beforeBreadcrumb(breadcrumb, hint) {
44
const {message} = breadcrumb;
45
- if (message.includes("prev state") || message.includes("next state")) {
+ // Exclude console logging of redux actions
46
+ if (message.includes("prev state") || message.includes("next state") || message.includes("%c action ")) {
47
return null;
48
}
49
return breadcrumb;
0 commit comments