When failing to logon to the Soda cloud (server) the entire JSON of the error response is logged. In soda_server_client/soda_server_client.py line 222:
if login_response.status_code != 200:
raise AssertionError(f'< {login_response.status_code} Login failed:
{login_response.content}')
Given that this the result of a failed logon, there is a chance that the response may contain the password or API key that was used in the logon attempt.
When failing to logon to the Soda cloud (server) the entire JSON of the error response is logged. In soda_server_client/soda_server_client.py line 222:
Given that this the result of a failed logon, there is a chance that the response may contain the password or API key that was used in the logon attempt.