Skip to content

Commit ee52562

Browse files
committed
[core] plugins: Downgrade the log level when loading the config file
1 parent 5a36cc5 commit ee52562

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meshroom/core/plugins.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,8 +363,8 @@ def loadConfig(self):
363363
if resolvedPath.exists():
364364
val = resolvedPath.as_posix()
365365
else:
366-
logging.warning(f"{k}: {resolvedPath.as_posix()} does not exist "
367-
f"(path before resolution: {val}).")
366+
logging.debug(f"{k}: {resolvedPath.as_posix()} does not exist "
367+
f"(path before resolution: {val}).")
368368

369369
self._configEnv[k] = str(val)
370370

0 commit comments

Comments
 (0)