mirror of https://github.com/sirupsen/logrus.git
fix race
This commit is contained in:
parent
7e6f976580
commit
8a870e4f7b
|
@ -24,11 +24,13 @@ func (f *LogstashFormatter) Format(entry *logrus.Entry) ([]byte, error) {
|
||||||
|
|
||||||
fields["@version"] = 1
|
fields["@version"] = 1
|
||||||
|
|
||||||
if f.TimestampFormat == "" {
|
timeStampFormat := f.TimestampFormat
|
||||||
f.TimestampFormat = logrus.DefaultTimestampFormat
|
|
||||||
|
if timeStampFormat == "" {
|
||||||
|
timeStampFormat = logrus.DefaultTimestampFormat
|
||||||
}
|
}
|
||||||
|
|
||||||
fields["@timestamp"] = entry.Time.Format(f.TimestampFormat)
|
fields["@timestamp"] = entry.Time.Format(timeStampFormat)
|
||||||
|
|
||||||
// set message field
|
// set message field
|
||||||
v, ok := entry.Data["message"]
|
v, ok := entry.Data["message"]
|
||||||
|
|
Loading…
Reference in New Issue