Skip to content

Commit b755239

Browse files
committed
Change logger level to debug to avoid cluttering up the command line
1 parent c820d19 commit b755239

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeEntropy/config/arg_config_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def merge_configs(self, args, run_config):
116116
# Step 1: Apply YAML values if CLI didn't explicitly set the argument
117117
for key, yaml_value in run_config.items():
118118
if yaml_value is not None and key not in cli_provided_args:
119-
logger.info(f"Using YAML value for {key}: {yaml_value}")
119+
logger.debug(f"Using YAML value for {key}: {yaml_value}")
120120
setattr(args, key, yaml_value)
121121

122122
# Step 2: Ensure all arguments have at least their default values

0 commit comments

Comments
 (0)