mirror of https://github.com/dnomd343/XProxy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
828 B
39 lines
828 B
package logger
|
|
|
|
import "go.uber.org/zap/zapcore"
|
|
|
|
const (
|
|
DebugLevel = zapcore.DebugLevel
|
|
InfoLevel = zapcore.InfoLevel
|
|
WarnLevel = zapcore.WarnLevel
|
|
ErrorLevel = zapcore.ErrorLevel
|
|
PanicLevel = zapcore.PanicLevel
|
|
)
|
|
|
|
func GetLevel() zapcore.Level {
|
|
return handle.level.Level()
|
|
}
|
|
|
|
func SetLevel(level zapcore.Level) {
|
|
handle.level.SetLevel(level)
|
|
}
|
|
|
|
func Debugf(template string, args ...interface{}) {
|
|
handle.sugar.Debugf(template, args...)
|
|
}
|
|
|
|
func Infof(template string, args ...interface{}) {
|
|
handle.sugar.Infof(template, args...)
|
|
}
|
|
|
|
func Warnf(template string, args ...interface{}) {
|
|
handle.sugar.Warnf(template, args...)
|
|
}
|
|
|
|
func Errorf(template string, args ...interface{}) {
|
|
handle.sugar.Errorf(template, args...)
|
|
}
|
|
|
|
func Panicf(template string, args ...interface{}) {
|
|
handle.sugar.Panicf(template, args...)
|
|
}
|
|
|