diff --git a/src/server/trpc/routers/feed/integration.ts b/src/server/trpc/routers/feed/integration.ts index 0919141..54c45a8 100644 --- a/src/server/trpc/routers/feed/integration.ts +++ b/src/server/trpc/routers/feed/integration.ts @@ -167,7 +167,12 @@ export const feedIntegrationRouter = router({ const res = tencentCloudAlarmSchema.safeParse(data); if (!res.success) { - logger.error('[TencentCloudAlarm] input parse error:', res.error); + logger.error( + '[TencentCloudAlarm] input parse error:', + res.error, + ' | input:', + data + ); throw new Error('Input not valid,' + JSON.stringify(res.error)); }