summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorSandy Walsh <sandy.walsh@rackspace.com>2011-09-15 18:10:04 -0700
committerSandy Walsh <sandy.walsh@rackspace.com>2011-09-15 18:10:04 -0700
commit41c642ce4abef72c79cb6443ce575d8398b1f452 (patch)
tree36617d88471f777eaeefa4e2aa791458cfeaeeb5 /nova/api
parent06c4eb3d8570e4f07a6c3012d2dc2ab907c460d8 (diff)
remove debugging
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/servers.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/nova/api/openstack/servers.py b/nova/api/openstack/servers.py
index 80f367199..002535e34 100644
--- a/nova/api/openstack/servers.py
+++ b/nova/api/openstack/servers.py
@@ -60,12 +60,9 @@ def novaclient_exception_converter(f):
"""
def new_f(*args, **kwargs):
try:
- LOG.debug("**** NOVACLIENT EXCEPTION CONVERTER >>>>")
ret = f(*args, **kwargs)
- LOG.debug("**** NOVACLIENT EXCEPTION CONVERTER <<<<")
return ret
except novaclient_exceptions.ClientException, e:
- LOG.debug("**** NOVACLIENT EXCEPTION CONVERTER- RERAISING")
raise ConvertedException(e.code, e.message, e.details)
return new_f