update log messages to ease debugging (#988)

This commit is contained in:
bmc-msft
2021-06-14 15:18:03 -04:00
committed by GitHub
parent 4472d584ac
commit b9950c5526
5 changed files with 16 additions and 7 deletions

View File

@ -346,10 +346,11 @@ class TestOnefuzz:
# check if the task itself has an error
if task.error is not None:
self.logger.error(
"task failed: %s - %s (%s)",
"task failed: %s - %s (%s) - %s",
job.config.name,
task.config.task.type.name,
task.error,
task.task_id,
)
return TaskTestState.failed