Skip to content

Commit

Permalink
Disable Sentry locally
Browse files Browse the repository at this point in the history
  • Loading branch information
jmduke committed Sep 10, 2024
1 parent 845b75b commit 108d30c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sentry.client.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ Sentry.init({
tracesSampleRate: 1,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
debug: process.env.NODE_ENV !== "production",
});
2 changes: 1 addition & 1 deletion sentry.edge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ Sentry.init({
tracesSampleRate: 1,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
debug: process.env.NODE_ENV !== "production",
});
2 changes: 1 addition & 1 deletion sentry.server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ Sentry.init({
tracesSampleRate: 1,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
debug: process.env.NODE_ENV !== "production",
});

0 comments on commit 108d30c

Please sign in to comment.