Skip to content
Snippets Groups Projects
Verified Commit b5d60798 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

core.config: Decrease configuration loaded path log-level to debug

parent bfca0a8d
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ def read_raw_config(base_config_path: str) -> Dict[str, Any]:
"""
yml_file = f"{base_config_path}.yml"
if exists_accessible(yml_file):
logger.info("Loading config file %s", yml_file)
logger.debug("Loading config file %s", yml_file)
with open(yml_file) as f:
return yaml.safe_load(f)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment