Revert "Debug Nova APIs call failures"

This reverts commit afb0f77484.

Reason for revert: 

We unfortunately leak the token in the logs which is considered a security flaw, even if only provided on DEBUG level.

Change-Id: I52b52e65b689dadbdb08122c94652c491f850de6
Closes-Bug: #2012993
(cherry picked from commit 6833695e70)
(cherry picked from commit a02f966873)
This commit is contained in:
Sylvain Bauza 2023-05-02 15:51:28 +00:00
parent f1009524f2
commit 91ee67019e
1 changed files with 0 additions and 6 deletions

View File

@ -538,12 +538,6 @@ 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: