Warn to Verbose

The log statement "Download did not succeed, falling back to host plugin" is not very useful, and is rather noisy.
This commit is contained in:
Christopher Boumenot
2018-01-24 21:27:44 -08:00
committed by GitHub
parent c93a969f5c
commit 42648cbefa
+1 -1
View File
@@ -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)