mirror of https://github.com/go-sonic/sonic.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.3 KiB
Go
98 lines
2.3 KiB
Go
2 years ago
|
package log
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"go.uber.org/zap"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
exportUseLogger *zap.Logger
|
||
|
exportUseSugarLogger *zap.SugaredLogger
|
||
|
)
|
||
|
|
||
|
func Debugf(template string, args ...interface{}) {
|
||
|
exportUseSugarLogger.Debugf(template, args...)
|
||
|
}
|
||
|
|
||
|
func Infof(template string, args ...interface{}) {
|
||
|
exportUseSugarLogger.Infof(template, args...)
|
||
|
}
|
||
|
|
||
|
func Warnf(template string, args ...interface{}) {
|
||
|
exportUseSugarLogger.Warnf(template, args...)
|
||
|
}
|
||
|
|
||
|
func Errorf(template string, args ...interface{}) {
|
||
|
exportUseSugarLogger.Errorf(template, args...)
|
||
|
}
|
||
|
|
||
|
func Fatalf(template string, args ...interface{}) {
|
||
|
exportUseSugarLogger.Fatalf(template, args...)
|
||
|
}
|
||
|
|
||
|
func Debug(msg string, fields ...zap.Field) {
|
||
|
exportUseLogger.Debug(msg, fields...)
|
||
|
}
|
||
|
|
||
|
func Info(msg string, fields ...zap.Field) {
|
||
|
exportUseLogger.Info(msg, fields...)
|
||
|
}
|
||
|
|
||
|
func Warn(msg string, fields ...zap.Field) {
|
||
|
exportUseLogger.Warn(msg, fields...)
|
||
|
}
|
||
|
|
||
|
func Error(msg string, fields ...zap.Field) {
|
||
|
exportUseLogger.Error(msg, fields...)
|
||
|
}
|
||
|
|
||
|
func Fatal(msg string, fields ...zap.Field) {
|
||
|
exportUseLogger.Fatal(msg, fields...)
|
||
|
}
|
||
|
|
||
|
func CtxDebugf(ctx context.Context, template string, args ...interface{}) {
|
||
|
exportUseSugarLogger.Debugf(template, args...)
|
||
|
}
|
||
|
|
||
|
func CtxInfof(ctx context.Context, template string, args ...interface{}) {
|
||
|
exportUseSugarLogger.Infof(template, args...)
|
||
|
}
|
||
|
|
||
|
func CtxWarnf(ctx context.Context, template string, args ...interface{}) {
|
||
|
exportUseSugarLogger.Warnf(template, args...)
|
||
|
}
|
||
|
|
||
|
func CtxErrorf(ctx context.Context, template string, args ...interface{}) {
|
||
|
exportUseSugarLogger.Errorf(template, args...)
|
||
|
}
|
||
|
|
||
|
func CtxFatalf(ctx context.Context, template string, args ...interface{}) {
|
||
|
exportUseSugarLogger.Fatalf(template, args...)
|
||
|
}
|
||
|
|
||
|
func CtxDebug(ctx context.Context, msg string, fields ...zap.Field) {
|
||
|
exportUseLogger.Debug(msg, fields...)
|
||
|
}
|
||
|
|
||
|
func CtxInfo(ctx context.Context, msg string, fields ...zap.Field) {
|
||
|
exportUseLogger.Info(msg, fields...)
|
||
|
}
|
||
|
|
||
|
func CtxWarn(ctx context.Context, msg string, fields ...zap.Field) {
|
||
|
exportUseLogger.Warn(msg, fields...)
|
||
|
}
|
||
|
|
||
|
func CtxError(ctx context.Context, msg string, fields ...zap.Field) {
|
||
|
exportUseLogger.Error(msg, fields...)
|
||
|
}
|
||
|
|
||
|
func CtxFatal(ctx context.Context, msg string, fields ...zap.Field) {
|
||
|
exportUseLogger.Fatal(msg, fields...)
|
||
|
}
|
||
|
|
||
|
func Sync() {
|
||
|
exportUseLogger.Sync()
|
||
|
exportUseSugarLogger.Sync()
|
||
|
}
|