Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #4 from jglick/FlowExecutionList-JENKINS-34281
[JENKINS-34281] More logging about what happens when loading FlowExecutionList
  • Loading branch information
jglick committed Jun 9, 2016
2 parents ac98823 + 85c413b commit f749920
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -172,14 +172,15 @@ public void onLoaded() {
Futures.addCallback(e.getCurrentExecutions(false), new FutureCallback<List<StepExecution>>() {
@Override
public void onSuccess(List<StepExecution> result) {
LOGGER.log(FINE, "Will resume {0}", result);
for (StepExecution se : result) {
se.onResume();
}
}

@Override
public void onFailure(Throwable t) {

LOGGER.log(WARNING, null, t);
}
});
}
Expand Down

0 comments on commit f749920

Please sign in to comment.