From 527f734bc442458018d86df9a7e750a8e8de4495 Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Wed, 16 Oct 2024 01:10:47 +0800 Subject: [PATCH] refactor: ignore unknown sentry log --- src/server/trpc/routers/feed/integration.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/server/trpc/routers/feed/integration.ts b/src/server/trpc/routers/feed/integration.ts index da4d14e..fbf441a 100644 --- a/src/server/trpc/routers/feed/integration.ts +++ b/src/server/trpc/routers/feed/integration.ts @@ -346,7 +346,8 @@ export const feedIntegrationRouter = router({ return 'ok'; } - logUnknownIntegration('sentry', input); + // sentry payload is toooo large, its not good to print it at all + // logUnknownIntegration('sentry', input); return 'Not supported yet'; }),