Skip to content

Commit

Permalink
chore: stop logging session sample rate (#4460)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Dec 20, 2023
1 parent bf3cf61 commit d879aa7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ export const initSentry = (app, router) => {
}),
new Sentry.Replay()
],
sampleRate: 0.01,
sampleRate: 0,
maxBreadcrumbs: 50,
tracingOptions: {
trackComponents: true
},
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0,
replaysSessionSampleRate: 0,
replaysOnErrorSampleRate: 0,
denyUrls: [/extensions\//i, /^chrome:\/\//i, /^chrome-extension:\/\//i]
});
};
Expand Down

1 comment on commit d879aa7

@vercel
Copy link

@vercel vercel bot commented on d879aa7 Dec 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.