Skip to content

Commit

Permalink
Use new log function (#4086)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman committed Jul 2, 2024
1 parent ff11115 commit b9233f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/clusterfuzz/_internal/bot/tasks/utasks/fuzz_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -873,9 +873,9 @@ def postprocess_process_crashes(uworker_input: uworker_msg_pb2.Input,
known_crash_count, fuzz_task_output.testcases_executed,
crash_groups_for_stats)

logs.log(f'Finished processing crashes.\nNew crashes: {new_crash_count}, '
f'known crashes: {known_crash_count}, '
f'processed groups: {processed_groups}')
logs.info(f'Finished processing crashes.\nNew crashes: {new_crash_count}, '
f'known crashes: {known_crash_count}, '
f'processed groups: {processed_groups}')

return new_crash_count, known_crash_count, processed_groups

Expand Down

0 comments on commit b9233f0

Please sign in to comment.