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 4f95f45 commit b0896c0Copy full SHA for b0896c0
1 file changed
src/domain/app/sentry/utils.ts
@@ -72,7 +72,9 @@ const SENTRY_DENYLIST = [
72
];
73
74
export const cleanSensitiveData = (data: Record<string, unknown>) => {
75
+ console.log('Cleaning sensitive data:', data);
76
Object.entries(data).forEach(([key, value]) => {
77
+ console.log(`Processing key: ${key}, value:`, value);
78
if (
79
SENTRY_DENYLIST.includes(key) ||
80
SENTRY_DENYLIST.includes(snakeCase(key))
0 commit comments