Skip to content

Commit

Permalink
[JENKINS-72799] Apply SlaveComputer.decorate also to openLogFile (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Mar 4, 2024
1 parent 50f675f commit c7ccbfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/slaves/SlaveComputer.java
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ public boolean isConnecting() {
public OutputStream openLogFile() {
try {
log.rewind();
return log;
return decorate(log);
} catch (IOException e) {
logger.log(Level.SEVERE, "Failed to create log file " + getLogFile(), e);
return OutputStream.nullOutputStream();
Expand Down

0 comments on commit c7ccbfd

Please sign in to comment.