Skip to content

Commit

Permalink
Add more logging around unknown job tags
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah-witt committed Jun 26, 2024
1 parent c4a5434 commit 19d01b3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ private static String getJobName(Task task) {
WorkflowJob workflowJob = (WorkflowJob) task;
return workflowJob.getFullName();
}
logger.info(String.format("Unknown job found: %s; %s", task.getName(), task.getDisplayName()));
return "unknown";
}
}

0 comments on commit 19d01b3

Please sign in to comment.