Skip to content

Commit

Permalink
Merge pull request #2246 from openziti/event-handler-stdout-jsonl
Browse files Browse the repository at this point in the history
append newline to stdout events
  • Loading branch information
qrkourier authored Jul 17, 2024
2 parents 8278d69 + 9e9f75b commit a49bf6f
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 a49bf6f

Please sign in to comment.