diff options
| author | Brian Lamar <brian.lamar@rackspace.com> | 2011-06-18 23:10:41 -0400 |
|---|---|---|
| committer | Brian Lamar <brian.lamar@rackspace.com> | 2011-06-18 23:10:41 -0400 |
| commit | 843644aed6477b4411ec3f07d1a5271df41c9798 (patch) | |
| tree | cb0d1cfaf7a0542004416f536a12583d2b710d34 /nova/api | |
| parent | cf751516b6d7381fca5f0678c07baaa0f7fccece (diff) | |
General cleanup and refactor of a lot of the API/WSGI service code.
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/wsgi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/api/openstack/wsgi.py b/nova/api/openstack/wsgi.py index a57b7f72b..6033c1f5b 100644 --- a/nova/api/openstack/wsgi.py +++ b/nova/api/openstack/wsgi.py @@ -356,7 +356,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: @@ -384,7 +384,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 |
