You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Improve logging
Trying to strike the right balance between verbose and non-verbose mode in the CLI.
Particularly for the upload command it's been not satisfactory.
The list of files being uploaded as coverage is now listed in non-verbose mode.
Plus there's a positive feedback now that the process (command) finished - for ALL commands.
So you know that at least the CLI did its thing, even though there might still be errors.
And again for the upload command, separate better the response from codecov-api
and the response from the PUT request afterwards.
To help debugging and all that.
* Make positive feedback less intrusive
It was a lot of data in the "process complete" message.
We don't need all that just to let users know the process terminated.
So breaking that up again into 2 messages, the 2nd having all the data in verbose level.
"Selected uploader to use: <class 'codecov_cli.services.upload.legacy_upload_sender.LegacyUploadSender'>",
295
298
),
296
299
("info", "dry-run option activated. NOT sending data to Codecov."),
300
+
("info", "Process Upload complete"),
297
301
(
298
302
"debug",
299
-
'Process Upload complete. --- {"result": "RequestResult(error=None, warnings=None, status_code=200, text=\'Data NOT sent to Codecov because of dry-run option\')"}',
303
+
'Upload result --- {"result": "RequestResult(error=None, warnings=None, status_code=200, text=\'Data NOT sent to Codecov because of dry-run option\')"}',
0 commit comments