summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorBrian Waldon <brian.waldon@rackspace.com>2011-05-03 12:32:40 -0400
committerBrian Waldon <brian.waldon@rackspace.com>2011-05-03 12:32:40 -0400
commit29e9aa173ea20a7d5cb816ce7478d6c0c2c38b80 (patch)
tree16686a1a73c5c110edf01ed2656d909513d78ebd /nova/api
parent47119b1d1517c1e4b1d8fa5bdc1ace6492343dc7 (diff)
adding debug log message
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/servers.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/nova/api/openstack/servers.py b/nova/api/openstack/servers.py
index a238e6c82..3cf78e32c 100644
--- a/nova/api/openstack/servers.py
+++ b/nova/api/openstack/servers.py
@@ -692,6 +692,7 @@ class ControllerV11(Controller):
image_ref = info["rebuild"]["imageRef"]
except (KeyError, TypeError):
msg = _("Could not parse imageRef from request.")
+ LOG.debug(msg)
return faults.Fault(exc.HTTPBadRequest(explanation=msg))
image_id = common.get_id_from_href(image_ref)