Skip to content

Commit

Permalink
Light changes to console logs forgotten in JENKINS-30088 fix
Browse files Browse the repository at this point in the history
Originally-Committed-As: 066762028c673b6fd262d5afbcff1321a054aaab
  • Loading branch information
amuniz committed Jan 19, 2016
1 parent 94a1ef7 commit de78cd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -36,7 +36,7 @@ public boolean start() throws Exception {

Script script = shell.parse(cwd.child(step.getPath()).readToString());

node.addAction(new LabelAction("Loaded script: "+step.getPath()));
node.addAction(new LabelAction(step.getPath()));

// execute body as another thread that shares the same head as this thread
// as the body can pause.
Expand Down
Expand Up @@ -80,7 +80,7 @@ private static class ParallelLabelAction extends LabelAction implements ThreadNa

@Override
public String getDisplayName() {
return "Parallel branch: "+branchName;
return "Branch: " + branchName;
}

@Nonnull
Expand Down

0 comments on commit de78cd7

Please sign in to comment.