🎨 修改部分依赖
This commit is contained in:
parent
7ecc9ad8a4
commit
cecfed7212
105
caller.go
Normal file
105
caller.go
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
package logger
|
||||||
|
|
||||||
|
import (
|
||||||
|
"runtime"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
|
||||||
|
// qualified package name, cached at first use
|
||||||
|
logrusPackage string
|
||||||
|
|
||||||
|
// Positions in the call stack when tracing to report the calling method
|
||||||
|
minimumCallerDepth int
|
||||||
|
|
||||||
|
// Used for caller information initialisation
|
||||||
|
callerInitOnce sync.Once
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
maximumCallerDepth int = 25
|
||||||
|
knownLogrusFrames int = 8
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
// start at the bottom of the stack before the package-name cache is primed
|
||||||
|
minimumCallerDepth = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
// getPackageName reduces a fully qualified function name to the package name
|
||||||
|
// There really ought to be to be a better way...
|
||||||
|
func getPackageName(f string) string {
|
||||||
|
for {
|
||||||
|
lastPeriod := strings.LastIndex(f, ".")
|
||||||
|
lastSlash := strings.LastIndex(f, "/")
|
||||||
|
if lastPeriod > lastSlash {
|
||||||
|
f = f[:lastPeriod]
|
||||||
|
} else {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return f
|
||||||
|
}
|
||||||
|
|
||||||
|
// getCaller retrieves the name of the first non-logrus calling function
|
||||||
|
func getCaller() *runtime.Frame {
|
||||||
|
// cache this package's fully-qualified name
|
||||||
|
callerInitOnce.Do(func() {
|
||||||
|
pcs := make([]uintptr, maximumCallerDepth)
|
||||||
|
_ = runtime.Callers(0, pcs)
|
||||||
|
|
||||||
|
// dynamic get the package name and the minimum caller depth
|
||||||
|
for i := 0; i < maximumCallerDepth; i++ {
|
||||||
|
funcName := runtime.FuncForPC(pcs[i]).Name()
|
||||||
|
if strings.Contains(funcName, "getCaller") {
|
||||||
|
logrusPackage = getPackageName(funcName)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
minimumCallerDepth = knownLogrusFrames
|
||||||
|
})
|
||||||
|
|
||||||
|
// Restrict the lookback frames to avoid runaway lookups
|
||||||
|
pcs := make([]uintptr, maximumCallerDepth)
|
||||||
|
depth := runtime.Callers(minimumCallerDepth, pcs)
|
||||||
|
frames := runtime.CallersFrames(pcs[:depth])
|
||||||
|
|
||||||
|
for f, again := frames.Next(); again; f, again = frames.Next() {
|
||||||
|
pkg := getPackageName(f.Function)
|
||||||
|
|
||||||
|
// If the caller isn't part of this package, we're done
|
||||||
|
if pkg != logrusPackage && pkg != "github.com/sirupsen/logrus" {
|
||||||
|
return &f //nolint:scopelint
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// if we got here, we failed to find the caller's context
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// CallerHook is a hook designed for dealing with logs in test scenarios.
|
||||||
|
type CallerHook struct{}
|
||||||
|
|
||||||
|
// NewCallerHook installs a test hook for a given local logger.
|
||||||
|
func NewCallerHook(logger *logrus.Logger) *CallerHook {
|
||||||
|
hook := new(CallerHook)
|
||||||
|
logger.Hooks.Add(hook)
|
||||||
|
return hook
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *CallerHook) Fire(e *logrus.Entry) error {
|
||||||
|
if e.HasCaller() {
|
||||||
|
e.Caller = getCaller()
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *CallerHook) Levels() []logrus.Level {
|
||||||
|
return logrus.AllLevels
|
||||||
|
}
|
3
go.mod
3
go.mod
@ -5,11 +5,10 @@ go 1.17
|
|||||||
require (
|
require (
|
||||||
github.com/caarlos0/env/v6 v6.9.2
|
github.com/caarlos0/env/v6 v6.9.2
|
||||||
github.com/go-kit/kit v0.12.0
|
github.com/go-kit/kit v0.12.0
|
||||||
github.com/lixh00/loki-client-go v1.0.1
|
git.echol.cn/loser/loki-client-go v1.0.1
|
||||||
github.com/natefinch/lumberjack v2.0.0+incompatible
|
github.com/natefinch/lumberjack v2.0.0+incompatible
|
||||||
github.com/prometheus/common v0.34.0
|
github.com/prometheus/common v0.34.0
|
||||||
go.uber.org/zap v1.21.0
|
go.uber.org/zap v1.21.0
|
||||||
gorm.io/driver/mysql v1.3.2
|
|
||||||
gorm.io/gorm v1.23.5
|
gorm.io/gorm v1.23.5
|
||||||
)
|
)
|
||||||
|
|
||||||
|
12
log/say.go
12
log/say.go
@ -1,6 +1,9 @@
|
|||||||
package log
|
package log
|
||||||
|
|
||||||
import "go.uber.org/zap"
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"go.uber.org/zap"
|
||||||
|
)
|
||||||
|
|
||||||
// Debug uses fmt.Sprint to construct and log a message.
|
// Debug uses fmt.Sprint to construct and log a message.
|
||||||
func Debug(args ...interface{}) {
|
func Debug(args ...interface{}) {
|
||||||
@ -73,3 +76,10 @@ func Fatalf(template string, args ...interface{}) {
|
|||||||
defer zap.S().Sync()
|
defer zap.S().Sync()
|
||||||
zap.S().Fatalf(template, args...)
|
zap.S().Fatalf(template, args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Pretty provides pretty trace level logging
|
||||||
|
func Pretty(v ...interface{}) {
|
||||||
|
b, _ := json.MarshalIndent(v, "", " ")
|
||||||
|
defer zap.S().Sync()
|
||||||
|
zap.S().Info(string(b))
|
||||||
|
}
|
||||||
|
2
loki.go
2
loki.go
@ -4,8 +4,8 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"git.echol.cn/loser/loki-client-go/loki"
|
||||||
"github.com/go-kit/kit/log"
|
"github.com/go-kit/kit/log"
|
||||||
"github.com/lixh00/loki-client-go/loki"
|
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
"go.uber.org/zap/zapcore"
|
"go.uber.org/zap/zapcore"
|
||||||
|
Loading…
Reference in New Issue
Block a user