2014-03-11 03:22:08 +04:00
|
|
|
package logrus
|
|
|
|
|
2014-03-12 18:34:29 +04: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`.
|
2014-03-11 03:22:08 +04:00
|
|
|
type Formatter interface {
|
|
|
|
Format(*Entry) ([]byte, error)
|
|
|
|
}
|