From b5d607989bb2b4d8b9608a33d8e865d1af9f6cac Mon Sep 17 00:00:00 2001 From: "Antoine R. Dumont (@ardumont)" <ardumont@softwareheritage.org> Date: Tue, 22 Sep 2020 17:14:45 +0200 Subject: [PATCH] core.config: Decrease configuration loaded path log-level to debug --- swh/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swh/core/config.py b/swh/core/config.py index 91a8a4a8..bf2dc5bb 100644 --- a/swh/core/config.py +++ b/swh/core/config.py @@ -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) -- GitLab