From 86c5a77fa57af9ee863cfd44e8d9c8a33379abbe Mon Sep 17 00:00:00 2001 From: Apeksha Bhosale <7846888+ApekshaBhosale@users.noreply.github.com> Date: Wed, 16 Apr 2025 14:24:29 +0530 Subject: [PATCH] chore: replaced Sentry with faro (#40270) ## Description > [!TIP] > _Add a TL;DR when the description is longer than 500 words or extremely technical (helps the content, marketing, and DevRel team)._ > > _Please also include relevant motivation and context. List any dependencies that are required for this change. Add links to Notion, Figma or any other documents that might be relevant to the PR._ Fixes #`Issue Number` _or_ Fixes `Issue URL` > [!WARNING] > _If no issue exists, please create an issue first, and check with the maintainers if the issue is valid._ ## Automation /ok-to-test tags="" ### :mag: Cypress test results > [!CAUTION] > If you modify the content in this section, you are likely to disrupt the CI result for your PR. ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No ## Summary by CodeRabbit - **Bug Fixes** - Improved error reporting for certain errors to provide more detailed information. --- app/client/src/sagas/EvalErrorHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/src/sagas/EvalErrorHandler.ts b/app/client/src/sagas/EvalErrorHandler.ts index 016ccd8c3e..2e3725107d 100644 --- a/app/client/src/sagas/EvalErrorHandler.ts +++ b/app/client/src/sagas/EvalErrorHandler.ts @@ -311,7 +311,7 @@ export function* evalErrorHandler( } case EvalErrorTypes.UPDATE_DATA_TREE_ERROR: { // Log to Sentry with additional context - Sentry.captureMessage(error.message); + captureException(error, { errorName: "UpdateDataTreeError" }); // Log locally with error details log.error(`Evaluation Error: ${error.message}`, { type: error.type,