Skip to content

Commit 42a6f22

Browse files
committed
Turn off debug mode.
1 parent 43ee26a commit 42a6f22

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

dev-packages/e2e-tests/test-applications/create-remix-app-v2/app/entry.client.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Sentry.init({
2222
// Session Replay
2323
replaysSessionSampleRate: 0.1, // This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production.
2424
replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.
25-
debug: true,
2625
});
2726

2827
Sentry.addEventProcessor(event => {

dev-packages/e2e-tests/test-applications/create-remix-app-v2/app/entry.server.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Sentry.init({
2222
dsn: process.env.E2E_TEST_DSN,
2323
// Performance Monitoring
2424
tracesSampleRate: 1.0, // Capture 100% of the transactions, reduce in production!
25-
debug: true,
2625
});
2726

2827
export const handleError = Sentry.wrapRemixHandleError;

dev-packages/e2e-tests/test-applications/create-remix-app/app/entry.client.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Sentry.init({
2222
// Session Replay
2323
replaysSessionSampleRate: 0.1, // This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production.
2424
replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.
25-
debug: true,
2625
});
2726

2827
Sentry.addEventProcessor(event => {

dev-packages/e2e-tests/test-applications/create-remix-app/app/entry.server.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Sentry.init({
1919
dsn: process.env.E2E_TEST_DSN,
2020
// Performance Monitoring
2121
tracesSampleRate: 1.0, // Capture 100% of the transactions, reduce in production!
22-
debug: true,
2322
});
2423

2524
export const handleError = Sentry.wrapRemixHandleError;

0 commit comments

Comments
 (0)