mirror of https://github.com/openclaw/openclaw.git
fix(config): move sensitive-schema hint warnings to debug
This commit is contained in:
parent
d01e04bcec
commit
d98a61a977
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue