From 42648cbefae41b3738824f6ecd124cbd2fe8d255 Mon Sep 17 00:00:00 2001 From: Christopher Boumenot Date: Wed, 24 Jan 2018 21:27:44 -0800 Subject: [PATCH] Warn to Verbose The log statement "Download did not succeed, falling back to host plugin" is not very useful, and is rather noisy. --- azurelinuxagent/common/protocol/wire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azurelinuxagent/common/protocol/wire.py b/azurelinuxagent/common/protocol/wire.py index 24f8d5d..963d33c 100644 --- a/azurelinuxagent/common/protocol/wire.py +++ b/azurelinuxagent/common/protocol/wire.py @@ -160,7 +160,7 @@ class WireProtocol(Protocol): if package is not None: return package else: - logger.warn("Download did not succeed, falling back to host plugin") + logger.verbose("Download did not succeed, falling back to host plugin") host = self.client.get_host_plugin() uri, headers = host.get_artifact_request(uri, host.manifest_uri) package = super(WireProtocol, self).download_ext_handler_pkg(uri, headers=headers, use_proxy=False)