Async

Results 7 comments of Async

@BYK Since you wanted to be pinged for this.

> Hi, are you using microservices and did you set up an exception filter? https://docs.sentry.io/platforms/javascript/guides/nestjs/#using-error-filters-for-specific-exception-types Hey there! Thanks for the swift reply. No, I am not using microservices, and no...

Actually, scratch that last part. We are using the `@SentryExceptionCaptured()` decorator in the AllExceptionsFilter. Code snippet: ```ts // Package imports... @Catch() export class AllExceptionsFilter extends BaseExceptionFilter { private static readonly...

I am also using this in my `AppModule`: ```ts // ... providers: [ { provide: APP_FILTER, useClass: SentryGlobalFilter, }, // ... ```

> Hey! Using the `@SentryGlobalFilter` should be redundant if you have a catch-all filter (like your `AllExceptionsFilter`), so you can try if removing that changes anything. Your catch-all filter setup...

See: https://docs.nestjs.com/recipes/necord