fix(config): move sensitive-schema hint warnings to debug

This commit is contained in:
Peter Steinberger
2026-03-02 21:13:53 +00:00
parent d01e04bcec
commit d98a61a977

View File

@@ -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) {