From 8be8b34d231161ea745206071422e6be2613b947 Mon Sep 17 00:00:00 2001 From: Aleksei Apaseev Date: Tue, 12 Dec 2023 11:44:44 +0800 Subject: [PATCH] fix(idf_tools): Do not print the log about the version of the tool --- tools/idf_tools.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/idf_tools.py b/tools/idf_tools.py index 2d7d32e108..42bbdb0ba1 100755 --- a/tools/idf_tools.py +++ b/tools/idf_tools.py @@ -1709,7 +1709,6 @@ def handle_recommended_version_to_use( ): # type: (IDFTool, str, str, str) -> Tuple[list, dict] tool_export_paths = tool.get_export_paths(version_to_use) tool_export_vars = tool.get_export_vars(version_to_use) - info('Using a recommended version of tool {}: {}.'.format(tool_name, version_to_use), f=sys.stderr) if tool.version_in_path and tool.version_in_path not in tool.versions: info('Not using an unsupported version of tool {} found in PATH: {}.'.format( tool.name, tool.version_in_path) + prefer_system_hint, f=sys.stderr)