logrus/logrus.go

34 lines
688 B
Go
Raw Normal View History

2014-02-24 00:50:42 +00:00
package logrus
2014-02-23 14:57:04 +00:00
2014-03-10 23:22:08 +00:00
type Fields map[string]interface{}
2014-02-23 14:57:04 +00:00
type LevelType uint8
const (
LevelPanic LevelType = iota
LevelFatal
2014-03-10 23:22:08 +00:00
LevelError
LevelWarn
2014-02-23 14:57:04 +00:00
LevelInfo
LevelDebug
)
var Level LevelType = LevelInfo
// StandardLogger is what your logrus-enabled library should take, that way
// it'll accept a stdlib logger and a logrus logger. There's no standard
// interface, this is the closest we get, unfortunately.
type StandardLogger interface {
Print(...interface{})
Printf(string, ...interface{})
Printfln(...interface{})
Fatal(...interface{})
Fatalf(string, ...interface{})
Fatalln(...interface{})
Panic(...interface{})
Panicf(string, ...interface{})
Panicln(...interface{})
}