diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index 0303cdec9..9a79441a2 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -249,12 +249,12 @@ async function initServer() { await prisma.setting.update({ where: { id: '0' }, data: { sentryDSN } }) } // Initialize Sentry - Sentry.init({ - dsn: sentryDSN, - environment: isDev ? 'development' : 'production', - release: version - }); - console.log('[000] Sentry initialized...') + // Sentry.init({ + // dsn: sentryDSN, + // environment: isDev ? 'development' : 'production', + // release: version + // }); + // console.log('[000] Sentry initialized...') } } catch (error) { console.error(error) diff --git a/apps/api/src/routes/api/v1/settings/handlers.ts b/apps/api/src/routes/api/v1/settings/handlers.ts index f35c8f968..c835f3020 100644 --- a/apps/api/src/routes/api/v1/settings/handlers.ts +++ b/apps/api/src/routes/api/v1/settings/handlers.ts @@ -84,12 +84,12 @@ export async function saveSettings(request: FastifyRequest, reply: await prisma.setting.update({ where: { id }, data: { minPort, maxPort } }); } if (doNotTrack === false) { - Sentry.init({ - dsn: sentryDSN, - environment: isDev ? 'development' : 'production', - release: version - }); - console.log('Sentry initialized') + // Sentry.init({ + // dsn: sentryDSN, + // environment: isDev ? 'development' : 'production', + // release: version + // }); + // console.log('Sentry initialized') } return reply.code(201).send() } catch ({ status, message }) { diff --git a/apps/ui/src/routes/__layout.svelte b/apps/ui/src/routes/__layout.svelte index 7b1183745..4813a7799 100644 --- a/apps/ui/src/routes/__layout.svelte +++ b/apps/ui/src/routes/__layout.svelte @@ -106,15 +106,15 @@ if (teamId) $appSession.teamId = teamId; if (permission) $appSession.permission = permission; if (isAdmin) $appSession.isAdmin = isAdmin; - if (settings?.doNotTrack === false) { - Sentry.init({ - dsn: sentryDSN, - environment: dev ? 'development' : 'production', - integrations: [new BrowserTracing()], - release: $appSession.version?.toString(), - tracesSampleRate: 0.2 - }); - } + // if (settings?.doNotTrack === false) { + // Sentry.init({ + // dsn: sentryDSN, + // environment: dev ? 'development' : 'production', + // integrations: [new BrowserTracing()], + // release: $appSession.version?.toString(), + // tracesSampleRate: 0.2 + // }); + // } async function logout() { try { Cookies.remove('token');