You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case you are using a global catch-all exception filter (which is either a filter registered with
37
-
`app.useGlobalFilters()` or a filter registered in your app module providers annotated with a `@Catch()` decorator
38
-
without arguments), add a `@WithSentry()` decorator to the `catch()` method of this global error filter. This decorator
39
-
will report all unexpected errors that are received by your global error filter to Sentry:
36
+
If you're using a global catch-all exception filter (which is either a filter registered with `app.useGlobalFilters()` or a filter registered in your app module providers annotated with a `@Catch()` decorator without arguments), add a `@SentryExceptionCaptured()` decorator to the filter's `catch()` method.
37
+
This decorator will report all unexpected errors that are received by your global error filter to Sentry:
0 commit comments