diff options
| author | Brian Lamar <brian.lamar@rackspace.com> | 2011-06-28 15:13:52 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-06-28 15:13:52 +0000 |
| commit | c400af0d27f28cd0b56f94cd2640893f3cb698e7 (patch) | |
| tree | 047d12e01dfa95156b8801596aa52024281355ad /nova/api | |
| parent | 53b067431a4484ff243546f99c938b76f8f67972 (diff) | |
| parent | 4ec4ec7e4008adabf051651e3c55137c9954139f (diff) | |
Re-worked some of the WSGI and WSGIService code to make launching WSGI services easier, less error prone, and more testable. Added tests for WSGI server, new WSGI loader, and modified integration tests where needed.
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 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 |
