From d98a61a97707e733036da306227cfe43e2f8aac0 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 2 Mar 2026 21:13:53 +0000 Subject: [PATCH] fix(config): move sensitive-schema hint warnings to debug --- src/config/schema.hints.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/schema.hints.ts b/src/config/schema.hints.ts index 64b7cd1f789..3d212836f70 100644 --- a/src/config/schema.hints.ts +++ b/src/config/schema.hints.ts @@ -195,7 +195,7 @@ export function mapSensitivePaths( if (isSensitive) { next[path] = { ...next[path], sensitive: true }; } else if (isSensitiveConfigPath(path) && !next[path]?.sensitive) { - log.warn(`possibly sensitive key found: (${path})`); + log.debug(`possibly sensitive key found: (${path})`); } if (currentSchema instanceof z.ZodObject) {