summaryrefslogtreecommitdiff
path: root/nova/api/openstack/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/api/openstack/wsgi.py')
-rw-r--r--nova/api/openstack/wsgi.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/nova/api/openstack/wsgi.py b/nova/api/openstack/wsgi.py
index e64b4a2016..1d17ce1c9f 100644
--- a/nova/api/openstack/wsgi.py
+++ b/nova/api/openstack/wsgi.py
@@ -538,6 +538,12 @@ class Resource(wsgi.Application):
with ResourceExceptionHandler():
action_result = self.dispatch(meth, request, action_args)
except Fault as ex:
+ LOG.debug(f'Request method failure captured:\n'
+ f' request: {request}\n'
+ f' method: {meth}\n'
+ f' exception: {ex}\n'
+ f' action_args: {action_args}\n',
+ exc_info=1)
response = ex
if not response: