We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09586de commit 24afa22Copy full SHA for 24afa22
packages/tanstackstart-react/src/vite/sentryTanstackStart.ts
@@ -48,12 +48,9 @@ export interface SentryTanstackStartOptions extends BuildTimeOptionsBase {
48
export function sentryTanstackStart(options: SentryTanstackStartOptions = {}): Plugin[] {
49
const plugins: Plugin[] = [];
50
51
- console.log('sentryTanstackStart options', options);
52
-
53
- // middleware auto-instrumentation
+ // Auto-instrument middleware
54
const autoInstrumentMiddleware = options.autoInstrumentMiddleware !== false;
55
if (autoInstrumentMiddleware) {
56
- console.log('autoInstrumentMiddleware', autoInstrumentMiddleware);
57
plugins.push(makeAutoInstrumentMiddlewarePlugin({ enabled: true, debug: options.debug }));
58
}
59
0 commit comments