From 5dedab5fafaab1f29aad54b4e5256f23114bf253 Mon Sep 17 00:00:00 2001 From: dsrkafuu Date: Fri, 8 Apr 2022 17:42:42 +0800 Subject: [PATCH] fix: remove debug console log --- src/main.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.tsx b/src/main.tsx index 87e0fb2..eb3fcca 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -8,7 +8,6 @@ const sentryDsn = import.meta.env.VITE_SENTRY_DSN; if (import.meta.env.PROD && sentryDsn) { Promise.all([import('@sentry/react'), import('@sentry/tracing')]).then( ([Sentry, { Integrations }]) => { - console.log(Sentry, Integrations); Sentry.init({ dsn: `${sentryDsn}`, integrations: [new Integrations.BrowserTracing()],