Skip to content

Commit

Permalink
Remove unnecessary logging (#4193)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman authored Aug 21, 2024
1 parent fe2e5f9 commit 3ebb803
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/clusterfuzz/_internal/bot/tasks/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,6 @@ def _is_testcase_minimized(testcase):


def download_testcase(testcase_download_url, dst):
logs.info(f'Downloading testcase from: {testcase_download_url}')
return storage.download_signed_url_to_file(testcase_download_url, dst)


Expand Down
3 changes: 1 addition & 2 deletions src/clusterfuzz/_internal/metrics/fuzzer_logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,7 @@ def upload_to_logs(bucket_name,
"""
if signed_upload_url:
if storage.upload_signed_url(contents, signed_upload_url):
logs.info(
'Uploaded file to logs bucket.', signed_upload_url=signed_upload_url)
logs.info('Uploaded file to logs bucket.')
else:
logs.error(
'Failed to write file to logs bucket.',
Expand Down

0 comments on commit 3ebb803

Please sign in to comment.