mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #35612 from ikarpovich/35610-le-line-only
Logentries driver line-only=true []byte output fix
This commit is contained in:
commit
c75c45b188
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue