diff --git a/cinder/api/middleware/fault.py b/cinder/api/middleware/fault.py index e170b4c4633..862fe25e481 100644 --- a/cinder/api/middleware/fault.py +++ b/cinder/api/middleware/fault.py @@ -60,7 +60,7 @@ class FaultWrapper(base_wsgi.Middleware): status = http_client.INTERNAL_SERVER_ERROR msg_dict = dict(url=req.url, status=status) - LOG.info("%(url)s returned with HTTP %(status)d", msg_dict) + LOG.info("%(url)s returned with HTTP %(status)s", msg_dict) outer = self.status_to_type(status) if headers: outer.headers = headers diff --git a/cinder/api/openstack/wsgi.py b/cinder/api/openstack/wsgi.py index 21428791f52..2c9d78a42b8 100644 --- a/cinder/api/openstack/wsgi.py +++ b/cinder/api/openstack/wsgi.py @@ -936,7 +936,7 @@ class Resource(wsgi.Application): try: msg_dict = dict(url=request.url, status=response.status_int) - msg = "%(url)s returned with HTTP %(status)d" + msg = "%(url)s returned with HTTP %(status)s" except AttributeError as e: msg_dict = dict(url=request.url, e=e) msg = "%(url)s returned a fault: %(e)s"