feat: allow all logs to be passed to sentry

This commit is contained in:
Enno Gelhaus 2025-11-26 13:24:34 +01:00 committed by GitHub
parent b4e375c010
commit 91931c9bda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ export const initializeSentry = (appName: string, allowLogs = false) => {
integrations: [
// Add our Profiling integration
nodeProfilingIntegration(),
Sentry.consoleLoggingIntegration({ levels: ['log', 'error', 'warn'] }),
Sentry.consoleLoggingIntegration({ levels: ['log', 'info', 'warn', 'error', 'debug', 'assert', 'trace'] }),
Sentry.openAIIntegration({
recordInputs: true,
recordOutputs: true,