Skip to content

Commit

Permalink
append newline to stdout events
Browse files Browse the repository at this point in the history
  • Loading branch information
qrkourier committed Jul 17, 2024
1 parent 8278d69 commit 9e9f75b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller/events/file_logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func NewFileEventLogger(formatterFactory LoggingHandlerFactory, stdout bool, con
}
}

var output io.WriteCloser = os.Stdout
var output = &newlineWriter{out: os.Stdout}

if !stdout {
// allow config to override the max file size
Expand Down

0 comments on commit 9e9f75b

Please sign in to comment.