Merge branch 'tools/remove_log_line_of_recommended_tool' into 'master'

fix(idf_tools): Do not display the log containing the info about the tool that is being used as recommended

See merge request espressif/esp-idf!27855
This commit is contained in:
Roland Dobai
2023-12-12 16:59:13 +08:00

View File

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