fix(idf_tools): Do not print the log about the version of the tool

pull/12852/head
Aleksei Apaseev 2023-12-12 11:44:44 +08:00
rodzic a4c80b5fce
commit 8be8b34d23
1 zmienionych plików z 0 dodań i 1 usunięć

Wyświetl plik

@ -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)