summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2011-07-01 12:03:27 -0700
committerVishvananda Ishaya <vishvananda@gmail.com>2011-07-01 12:03:27 -0700
commita9b0dbb8dcd708a46af58f61bab39b0bc9e8a6e8 (patch)
tree58eab13f1bc92f1c48022906fb04635a77b6e9f4
parent401bbecb4fbb819d2b1daa3ee1bebcd6460742a1 (diff)
downloadnova-a9b0dbb8dcd708a46af58f61bab39b0bc9e8a6e8.tar.gz
nova-a9b0dbb8dcd708a46af58f61bab39b0bc9e8a6e8.tar.xz
nova-a9b0dbb8dcd708a46af58f61bab39b0bc9e8a6e8.zip
remove logging statement
-rw-r--r--nova/api/openstack/images.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/nova/api/openstack/images.py b/nova/api/openstack/images.py
index 9717f3175..b4ab0b3af 100644
--- a/nova/api/openstack/images.py
+++ b/nova/api/openstack/images.py
@@ -220,7 +220,6 @@ class ControllerV11(Controller):
host_ok = passed.hostname == expected.hostname
port_ok = (passed.port == expected.port or
passed.port == FLAGS.osapi_port)
- LOG.warn(locals())
if not (scheme_ok and port_ok and host_ok and server_id):
msg = _("serverRef must match request url")
raise webob.exc.HTTPBadRequest(explanation=msg)