提交 8d897edf 编写于 作者: C christ66

Fixed incomplete log message where there is a potential candidate for

a task.
上级 dd4256af
......@@ -1504,7 +1504,9 @@ public class Queue extends ResourceController implements Saveable {
List<JobOffer> candidates = new ArrayList<JobOffer>(parked.size());
for (JobOffer j : parked.values()) {
if (j.canTake(p)) {
LOGGER.log(Level.FINEST, "Potential candidate for ");
LOGGER.log(Level.FINEST,
"{0} is a potential candidate for task {1}",
new Object[]{j.executor.getDisplayName(), p.task.getFullDisplayName()});
candidates.add(j);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册