diff --git a/lib/exceptions/intentExceptionFilter.ts b/lib/exceptions/intentExceptionFilter.ts index 6245c40..d105245 100644 --- a/lib/exceptions/intentExceptionFilter.ts +++ b/lib/exceptions/intentExceptionFilter.ts @@ -30,7 +30,6 @@ export abstract class IntentExceptionFilter extends BaseExceptionFilter { reportToSentry(exception: any): void { const sentryConfig = IntentConfig.get('app.sentry'); - console.log(sentryConfig); if (!sentryConfig?.dsn) return; const exceptionConstructor = exception?.constructor; @@ -39,7 +38,6 @@ export abstract class IntentExceptionFilter extends BaseExceptionFilter { exceptionConstructor && !this.doNotReport().includes(exceptionConstructor) ) { - console.log(exceptionConstructor); sentry.captureException(exception); } }