Skip to content
2 changes: 0 additions & 2 deletions lib/exceptions/intentExceptionFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -39,7 +38,6 @@ export abstract class IntentExceptionFilter extends BaseExceptionFilter {
exceptionConstructor &&
!this.doNotReport().includes(exceptionConstructor)
) {
console.log(exceptionConstructor);
sentry.captureException(exception);
}
}
Expand Down