From 4648becfd4d94dc43e646b5bff6a7891d3298b5a Mon Sep 17 00:00:00 2001 From: Subhankar Banerjee <42092449+shubhrec@users.noreply.github.com> Date: Mon, 3 Mar 2025 00:14:08 +0530 Subject: [PATCH] Update sentry.filter.ts --- packages/sentry-plugin/src/sentry.filter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sentry-plugin/src/sentry.filter.ts b/packages/sentry-plugin/src/sentry.filter.ts index c69ef47c42..0ddce6c8d8 100644 --- a/packages/sentry-plugin/src/sentry.filter.ts +++ b/packages/sentry-plugin/src/sentry.filter.ts @@ -26,7 +26,7 @@ export class SentryExceptionsFilter extends ExceptionLoggerFilter { if (variables) { setContext('GraphQL Error Variables', variables); } - this.sentryService.captureException(exception); + this.sentryService.captureException(exception,'true'); } return super.catch(exception, host); }