summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/api/openstack/wsgi.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/api/openstack/wsgi.py b/nova/api/openstack/wsgi.py
index 519669134..733685b14 100644
--- a/nova/api/openstack/wsgi.py
+++ b/nova/api/openstack/wsgi.py
@@ -919,6 +919,10 @@ class Resource(wsgi.Application):
msg = _("Malformed request body")
return Fault(webob.exc.HTTPBadRequest(explanation=msg))
+ if body:
+ LOG.info(_("Action: '%(action)s', body: %(body)s") % locals())
+ LOG.debug(_("Calling method %s") % meth)
+
# Now, deserialize the request body...
try:
if content_type: