Skip to content

Commit 43ee26a

Browse files
committed
Turn on debug mode.
1 parent fd39129 commit 43ee26a

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ 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,
2526
});
2627

2728
Sentry.addEventProcessor(event => {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ 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,
2526
});
2627

2728
export const handleError = Sentry.wrapRemixHandleError;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ 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,
2526
});
2627

2728
Sentry.addEventProcessor(event => {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ 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,
2223
});
2324

2425
export const handleError = Sentry.wrapRemixHandleError;

0 commit comments

Comments
 (0)