/* ** description("get the name and line number of the calling file hook"). ** copyright('tuoyun,www.tuoyun.net'). ** author("fg,Gordon@tuoyun.net"). ** time(2021/3/16 11:26). */ package log import ( "github.com/OpenIMSDK/Open-IM-Server/pkg/utils" "github.com/sirupsen/logrus" "runtime" "strings" ) type fileHook struct{} func newFileHook() *fileHook { return &fileHook{} } func (f *fileHook) Levels() []logrus.Level { return logrus.AllLevels } func (f *fileHook) Fire(entry *logrus.Entry) error { var s string _, file, line, _ := runtime.Caller(8) i := strings.SplitAfter(file, "/") if len(i) > 3 { s = i[len(i)-3] + i[len(i)-2] + i[len(i)-1] + ":" + utils.IntToString(line) } entry.Data["FilePath"] = s return nil }