We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1327316 commit 2523d6eCopy full SHA for 2523d6e
main.py
@@ -435,6 +435,8 @@ def cli_token_login():
435
except requests.HTTPError as err:
436
if err.response.status_code == 401:
437
error = 'Error: CLI token could not be authorized, create a new and try again'
438
+ logging.warning(f'HTTP error {err.response.status_code} on url {url} with data {data}')
439
+ logging.warning(f'The following content was returned: {err.response.content}')
440
raise err
441
442
resp = json.loads(content)
0 commit comments