From 10d1400c55203dc910b8a849e492695a1410552b Mon Sep 17 00:00:00 2001 From: Al Date: Mon, 18 Dec 2023 16:34:25 +0100 Subject: [PATCH] fix: disable verbose logging level in config.py; only visible on debug log level now (#62) --- src/algokit_utils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algokit_utils/config.py b/src/algokit_utils/config.py index bd422056..55850fd0 100644 --- a/src/algokit_utils/config.py +++ b/src/algokit_utils/config.py @@ -33,7 +33,7 @@ def _configure_project_root(self) -> None: """Configures the project root by searching for a specific file within a depth limit.""" current_path = Path(__file__).resolve() for _ in range(self._max_search_depth): - logger.info(f"Searching in: {current_path}") + logger.debug(f"Searching in: {current_path}") if (current_path / ALGOKIT_CONFIG_FILENAME).exists(): self._project_root = current_path break