Skip to content

Commit

Permalink
Merge pull request moby#35612 from ikarpovich/35610-le-line-only
Browse files Browse the repository at this point in the history
Logentries driver line-only=true []byte output fix
  • Loading branch information
vieux authored Nov 27, 2017
2 parents c672fbd + 440e50b commit c75c45b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/logger/logentries/logentries.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func (f *logentries) Log(msg *logger.Message) error {
logger.PutMessage(msg)
f.writer.Println(f.tag, ts, data)
} else {
line := msg.Line
line := string(msg.Line)
logger.PutMessage(msg)
f.writer.Println(line)
}
Expand Down

0 comments on commit c75c45b

Please sign in to comment.