Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-34281] More logging about what happens when loading FlowExec…
…utionList.
  • Loading branch information
jglick committed Jun 8, 2016
1 parent ac98823 commit 85c413b
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 85c413b

Please sign in to comment.