summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-09-17 07:56:44 +0000
committerGerrit Code Review <review@openstack.org>2014-09-17 07:56:44 +0000
commit83808076a17970387aeabb8de75c5c9fa57634e5 (patch)
treeab7cb6b2e1d9eb7e4887c3ac6f408b81c21d810d
parent49feed7cba45d8dad75b69cb153196dbad962f2b (diff)
parentcda8c4d6cfcc7609f842a1ed4463ebe95fd2e140 (diff)
downloadpython-glanceclient-83808076a17970387aeabb8de75c5c9fa57634e5.tar.gz
Merge "Downgrade log message for http request failures"
-rw-r--r--glanceclient/common/http.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glanceclient/common/http.py b/glanceclient/common/http.py
index 44fd5c0..fa46d15 100644
--- a/glanceclient/common/http.py
+++ b/glanceclient/common/http.py
@@ -215,7 +215,7 @@ class HTTPClient(object):
raise exc.CommunicationError(message=message)
if not resp.ok:
- LOG.error("Request returned failure status %s." % resp.status_code)
+ LOG.debug("Request returned failure status %s." % resp.status_code)
raise exc.from_response(resp, resp.content)
elif resp.status_code == requests.codes.MULTIPLE_CHOICES:
raise exc.from_response(resp)