Don't emit a msg if there is none to emit

This commit is contained in:
Edward Muller 2015-06-19 17:20:59 -07:00
parent 418b41d23a
commit 9ca7d9fefe
1 changed files with 3 additions and 1 deletions

View File

@ -84,7 +84,9 @@ func (f *TextFormatter) Format(entry *Entry) ([]byte, error) {
f.appendKeyValue(b, "time", entry.Time.Format(timestampFormat))
}
f.appendKeyValue(b, "level", entry.Level.String())
f.appendKeyValue(b, "msg", entry.Message)
if entry.Message != "" {
f.appendKeyValue(b, "msg", entry.Message)
}
for _, key := range keys {
f.appendKeyValue(b, key, entry.Data[key])
}