Skip to content

Commit b0896c0

Browse files
committed
chore: wip temp sentry issue logging
1 parent 4f95f45 commit b0896c0

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/domain/app/sentry/utils.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ const SENTRY_DENYLIST = [
7272
];
7373

7474
export const cleanSensitiveData = (data: Record<string, unknown>) => {
75+
console.log('Cleaning sensitive data:', data);
7576
Object.entries(data).forEach(([key, value]) => {
77+
console.log(`Processing key: ${key}, value:`, value);
7678
if (
7779
SENTRY_DENYLIST.includes(key) ||
7880
SENTRY_DENYLIST.includes(snakeCase(key))

0 commit comments

Comments
 (0)