From 449eaede96c1e9269de78f3d4b2c41be757d8a93 Mon Sep 17 00:00:00 2001 From: Subhankar Banerjee <42092449+shubhrec@users.noreply.github.com> Date: Fri, 28 Feb 2025 03:57:07 +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); }