fix: Sentry jen s error monitoringem (bez Sentry Logs)
CI / Generate TypeScript types (push) Successful in 11s
CI / Server unit tests (push) Successful in 23s
CI / Build server (push) Successful in 27s
CI / Build client (push) Successful in 40s
CI / Playwright E2E tests (push) Successful in 1m32s
CI / Build and push Docker image (push) Has been cancelled
CI / Notify (push) Has been cancelled

Naše self-hosted instance nemá zapnuté Sentry Logs — console.error/warn
se nově hlásí jako eventy (captureConsoleIntegration), console.log se
k chybám přikládá jako breadcrumbs.
This commit is contained in:
2026-07-14 11:25:49 +02:00
parent 12fa87f3ad
commit f8c5d28f47
3 changed files with 5 additions and 5 deletions
+4 -3
View File
@@ -11,9 +11,10 @@ if (process.env.SENTRY_DSN) {
Sentry.init({
dsn: process.env.SENTRY_DSN,
environment: process.env.NODE_ENV ?? 'production',
enableLogs: true,
// Přeposílá console.log/warn/error jako Sentry Logs — mj. přechody stavů Bolt trackingu
integrations: [Sentry.consoleLoggingIntegration({ levels: ['log', 'warn', 'error'] })],
// Naše self-hosted instance má jen error monitoring (bez Sentry Logs):
// console.error/warn se hlásí jako eventy, console.log (např. přechody stavů
// Bolt trackingu) se k chybám přikládá jako breadcrumbs (výchozí integrace).
integrations: [Sentry.captureConsoleIntegration({ levels: ['error', 'warn'] })],
});
console.log('Sentry: inicializováno');
}