[JENKINS-72799] Apply `SlaveComputer.decorate` also to `openLogFile` (#9009)

This commit is contained in:
Jesse Glick 2024-03-04 09:46:10 -05:00 committed by GitHub
parent 50f675f6e7
commit c7ccbfdde1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ public class SlaveComputer extends Computer {
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();