From 0af049e1518601154324228e8c2068d9420690ed Mon Sep 17 00:00:00 2001 From: Joaquin Colacci Date: Tue, 9 Jan 2024 14:04:47 +0100 Subject: [PATCH] Sentry: disable (#174) --- src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index f85fcbc..f6af4de 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -9,7 +9,7 @@ if (process.env.NODE_ENV !== "development") { }); process.on('uncaughtException', (err) => { - Sentry.captureException(err); + // Sentry.captureException(err); // Allow VS Code to make the decision. // It will display an error notification to the user.