fix(config): move sensitive-schema hint warnings to debug
This commit is contained in:
@@ -195,7 +195,7 @@ export function mapSensitivePaths(
|
|||||||
if (isSensitive) {
|
if (isSensitive) {
|
||||||
next[path] = { ...next[path], sensitive: true };
|
next[path] = { ...next[path], sensitive: true };
|
||||||
} else if (isSensitiveConfigPath(path) && !next[path]?.sensitive) {
|
} 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) {
|
if (currentSchema instanceof z.ZodObject) {
|
||||||
|
|||||||
Reference in New Issue
Block a user