eudore logger
Logger
type LoggerLevel int32
type Fields map[string]interface{}
type Logger interface {
Debug(...interface{})
Info(...interface{})
Warning(...interface{})
Error(...interface{})
Fatal(...interface{})
Debugf(string, ...interface{})
Infof(string, ...interface{})
Warningf(string, ...interface{})
Errorf(string, ...interface{})
Fatalf(string, ...interface{})
WithField(key string, value interface{}) Logger
WithFields(fields Fields) Logger
Sync() error
SetLevel(LoggerLevel)
}LoggerInt
LoggerStd
LoggerStdData
LoggerStdConfig
LoggerWriter
Last updated