Skip to content

Commit 29320b2

Browse files
chore: Change upload size log to .info (#109)
This PR changes the log.debug() call that records upload size to more generally log.info().
1 parent 48c818e commit 29320b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codecov-cli/codecov_cli/services/upload/upload_sender.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def send_upload_data(
128128
with sentry_sdk.start_span(name="upload_sender_storage") as storage_span:
129129
payload_size = sys.getsizeof(reports_payload)
130130
storage_span.set_data("payload_size", payload_size)
131-
logger.debug(f"Sending upload ({payload_size} bytes) to storage")
131+
logger.info(f"Sending upload ({payload_size} bytes) to storage")
132132
resp_from_storage = send_put_request(put_url, data=reports_payload)
133133

134134
return resp_from_storage

0 commit comments

Comments
 (0)