From 3db7bbb4762d6b0873d2bb4c9a19b3d7a5b95adc Mon Sep 17 00:00:00 2001 From: yash-signal Date: Fri, 16 May 2025 13:14:16 -0500 Subject: [PATCH] Only log zod when there's an error --- ts/textsecure/WebAPI.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ts/textsecure/WebAPI.ts b/ts/textsecure/WebAPI.ts index a4331502be..5d72a22a4d 100644 --- a/ts/textsecure/WebAPI.ts +++ b/ts/textsecure/WebAPI.ts @@ -503,7 +503,6 @@ async function _promiseAjax( ) { if (options.zodSchema) { result = parseUnknown(options.zodSchema, result); - log.info(logId, 'Zod schema applied'); } if (options.validateResponse) { if (!_validateResponse(result, options.validateResponse)) {