Skip to content

Commit

Permalink
fix: rm debug in prod
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Best-Codes committed Feb 9, 2025
1 parent b666ea3 commit 3c61b2d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package/src/instrument.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import { nodeProfilingIntegration } from "@sentry/profiling-node";

Sentry.init({
dsn: "https://e4a63c9808182cd9f2509079f7224507@o4508483919609856.ingest.us.sentry.io/4508787035013120",
integrations: [
nodeProfilingIntegration(),
],
integrations: [nodeProfilingIntegration()],
// Tracing configuration
tracesSampleRate: 1.0, // Capture 100% of the transactions

// Enable sourcemap support
includeLocalVariables: true,

debug: false,
});

// Export Sentry instance for use in other files
Expand Down

0 comments on commit 3c61b2d

Please sign in to comment.