Skip to content

Commit 87cb21a

Browse files
Add bot logs when a regular task is received (#3992)
1 parent c95aee1 commit 87cb21a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/clusterfuzz/_internal/base/tasks.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,9 @@ def get_task():
318318

319319
task = get_regular_task()
320320
if task:
321+
# Log the task details for debug purposes.
322+
logs.log(f'Got task with cmd {task.command} args {task.argument} '
323+
f'job {task.job} from {regular_queue()} queue.')
321324
return task
322325

323326
task = get_fuzz_task()

0 commit comments

Comments
 (0)