From a8df85fd9bf52a32b20c5d0b3c59765e848630f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20M=C3=B3ricz?= Date: Mon, 30 Sep 2024 19:10:24 +0200 Subject: [PATCH] fix(acuc): remove sentry capture --- apps/api/src/controllers/auth.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/api/src/controllers/auth.ts b/apps/api/src/controllers/auth.ts index fc98dc70..38407f0c 100644 --- a/apps/api/src/controllers/auth.ts +++ b/apps/api/src/controllers/auth.ts @@ -65,7 +65,6 @@ export async function setCachedACUC(api_key: string, acuc: AuthCreditUsageChunk }); } catch (error) { Logger.error(`Error updating cached ACUC ${cacheKeyACUC}: ${error}`); - Sentry.captureException(error); } }