summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorChris Behrens <cbehrens@codestud.com>2011-06-29 08:29:35 -0700
committerChris Behrens <cbehrens@codestud.com>2011-06-29 08:29:35 -0700
commit2de973b5d57c8a4a79b94dcbcf6d6299f5c83e3c (patch)
tree9e912e40caa2849932470640e6af8ab32f6aa09b /nova/api
parent37e86a230720921488ae19fc2ca92667e8be4485 (diff)
parent4a3ef4367db23e8495e9c1dc4a49b5c66a6c763e (diff)
downloadnova-2de973b5d57c8a4a79b94dcbcf6d6299f5c83e3c.tar.gz
nova-2de973b5d57c8a4a79b94dcbcf6d6299f5c83e3c.tar.xz
nova-2de973b5d57c8a4a79b94dcbcf6d6299f5c83e3c.zip
Merged trunk
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/wsgi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/api/openstack/wsgi.py b/nova/api/openstack/wsgi.py
index 5d24b4cca..5b6e3cb1d 100644
--- a/nova/api/openstack/wsgi.py
+++ b/nova/api/openstack/wsgi.py
@@ -358,7 +358,7 @@ class Resource(wsgi.Application):
def __call__(self, request):
"""WSGI method that controls (de)serialization and method dispatch."""
- LOG.debug("%(method)s %(url)s" % {"method": request.method,
+ LOG.info("%(method)s %(url)s" % {"method": request.method,
"url": request.url})
try:
@@ -386,7 +386,7 @@ class Resource(wsgi.Application):
msg_dict = dict(url=request.url, e=e)
msg = _("%(url)s returned a fault: %(e)s" % msg_dict)
- LOG.debug(msg)
+ LOG.info(msg)
return response