2017-02-07 21:33:23 +00:00
|
|
|
package logrus
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2018-01-22 11:16:03 +00:00
|
|
|
const defaultTimestampFormat = time.RFC3339
|
2017-02-07 21:33:23 +00:00
|
|
|
|
|
|
|
// The Formatter interface is used to implement a custom Formatter. It takes an
|
|
|
|
// `Entry`. It exposes all the fields, including the default ones:
|
|
|
|
//
|
|
|
|
// * `entry.Data["msg"]`. The message passed from Info, Warn, Error ..
|
|
|
|
// * `entry.Data["time"]`. The timestamp.
|
|
|
|
// * `entry.Data["level"]. The level the entry was logged at.
|
|
|
|
//
|
|
|
|
// Any additional fields added with `WithField` or `WithFields` are also in
|
|
|
|
// `entry.Data`. Format is expected to return an array of bytes which are then
|
|
|
|
// logged to `logger.Out`.
|
|
|
|
type Formatter interface {
|
|
|
|
Format(*Entry) ([]byte, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is to not silently overwrite `time`, `msg` and `level` fields when
|
|
|
|
// dumping it. If this code wasn't there doing:
|
|
|
|
//
|
|
|
|
// logrus.WithField("level", 1).Info("hello")
|
|
|
|
//
|
|
|
|
// Would just silently drop the user provided level. Instead with this code
|
|
|
|
// it'll logged as:
|
|
|
|
//
|
|
|
|
// {"level": "info", "fields.level": 1, "msg": "hello", "time": "..."}
|
|
|
|
//
|
|
|
|
// It's not exported because it's still using Data in an opinionated way. It's to
|
|
|
|
// avoid code duplication between the two default formatters.
|
2018-10-02 14:28:04 +00:00
|
|
|
func prefixFieldClashes(data Fields, fieldMap FieldMap) {
|
|
|
|
timeKey := fieldMap.resolve(FieldKeyTime)
|
|
|
|
if t, ok := data[timeKey]; ok {
|
|
|
|
data["fields."+timeKey] = t
|
|
|
|
delete(data, timeKey)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-02 14:28:04 +00:00
|
|
|
msgKey := fieldMap.resolve(FieldKeyMsg)
|
|
|
|
if m, ok := data[msgKey]; ok {
|
|
|
|
data["fields."+msgKey] = m
|
|
|
|
delete(data, msgKey)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-02 14:28:04 +00:00
|
|
|
levelKey := fieldMap.resolve(FieldKeyLevel)
|
|
|
|
if l, ok := data[levelKey]; ok {
|
|
|
|
data["fields."+levelKey] = l
|
|
|
|
delete(data, levelKey)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
}
|