logrus/logrus.go

99 lines
2.4 KiB
Go
Raw Normal View History

2014-02-24 00:50:42 +00:00
package logrus
2014-02-23 14:57:04 +00:00
import (
"fmt"
"log"
)
2014-03-12 14:34:29 +00:00
// Fields type, used to pass to `WithFields`.
2014-03-10 23:22:08 +00:00
type Fields map[string]interface{}
2014-02-23 14:57:04 +00:00
2014-03-12 14:34:29 +00:00
// Level type
2014-03-10 23:52:39 +00:00
type Level uint8
2014-02-23 14:57:04 +00:00
2014-07-27 01:02:08 +00:00
// Convert the Level to a string. E.g. PanicLevel becomes "panic".
func (level Level) String() string {
switch level {
case DebugLevel:
return "debug"
case InfoLevel:
return "info"
case WarnLevel:
return "warning"
case ErrorLevel:
return "error"
case FatalLevel:
return "fatal"
case PanicLevel:
return "panic"
}
return "unknown"
}
// ParseLevel takes a string level and returns the Logrus log level constant.
func ParseLevel(lvl string) (Level, error) {
switch lvl {
case "panic":
return PanicLevel, nil
case "fatal":
return FatalLevel, nil
case "error":
return ErrorLevel, nil
case "warn", "warning":
return WarnLevel, nil
case "info":
return InfoLevel, nil
case "debug":
return DebugLevel, nil
}
var l Level
return l, fmt.Errorf("not a valid logrus Level: %q", lvl)
}
2014-03-12 14:34:29 +00:00
// These are the different logging levels. You can set the logging level to log
// on your instance of logger, obtained with `logrus.New()`.
2014-02-23 14:57:04 +00:00
const (
// PanicLevel level, highest level of severity. Logs and then calls panic with the
2014-03-12 14:34:29 +00:00
// message passed to Debug, Info, ...
PanicLevel Level = iota
// FatalLevel level. Logs and then calls `os.Exit(1)`. It will exit even if the
2014-03-12 14:34:29 +00:00
// logging level is set to Panic.
FatalLevel
// ErrorLevel level. Logs. Used for errors that should definitely be noted.
2014-03-12 14:34:29 +00:00
// Commonly used for hooks to send errors to an error tracking service.
ErrorLevel
// WarnLevel level. Non-critical entries that deserve eyes.
WarnLevel
// InfoLevel level. General operational entries about what's going on inside the
2014-03-12 14:34:29 +00:00
// application.
InfoLevel
// DebugLevel level. Usually only enabled when debugging. Very verbose logging.
DebugLevel
2014-02-23 14:57:04 +00:00
)
// Won't compile if StdLogger can't be realized by a log.Logger
var (
_ StdLogger = &log.Logger{}
_ StdLogger = &Entry{}
_ StdLogger = &Logger{}
)
// StdLogger is what your logrus-enabled library should take, that way
2014-02-23 14:57:04 +00:00
// it'll accept a stdlib logger and a logrus logger. There's no standard
// interface, this is the closest we get, unfortunately.
type StdLogger interface {
2014-02-23 14:57:04 +00:00
Print(...interface{})
Printf(string, ...interface{})
Println(...interface{})
2014-02-23 14:57:04 +00:00
Fatal(...interface{})
Fatalf(string, ...interface{})
Fatalln(...interface{})
Panic(...interface{})
Panicf(string, ...interface{})
Panicln(...interface{})
}