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.
200 lines
5.4 KiB
200 lines
5.4 KiB
1 year ago
|
package log
|
||
|
|
||
|
import (
|
||
|
"Open_IM/pkg/common/config"
|
||
|
"bufio"
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"time"
|
||
|
|
||
|
nested "github.com/antonfisher/nested-logrus-formatter"
|
||
|
rotatelogs "github.com/lestrrat-go/file-rotatelogs"
|
||
|
"github.com/rifflock/lfshook"
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
var logger *Logger
|
||
|
|
||
|
type Logger struct {
|
||
|
*logrus.Logger
|
||
|
Pid int
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
logger = loggerInit("")
|
||
|
|
||
|
}
|
||
|
func NewPrivateLog(moduleName string) {
|
||
|
logger = loggerInit(moduleName)
|
||
|
}
|
||
|
|
||
|
func loggerInit(moduleName string) *Logger {
|
||
|
var logger = logrus.New()
|
||
|
//All logs will be printed
|
||
|
logger.SetLevel(logrus.Level(config.Config.Log.RemainLogLevel))
|
||
|
//Close std console output
|
||
|
src, err := os.OpenFile(os.DevNull, os.O_APPEND|os.O_WRONLY, os.ModeAppend)
|
||
|
if err != nil {
|
||
|
panic(err.Error())
|
||
|
}
|
||
|
writer := bufio.NewWriter(src)
|
||
|
logger.SetOutput(writer)
|
||
|
//logger.SetOutput(os.Stdout)
|
||
|
//Log Console Print Style Setting
|
||
|
logger.SetFormatter(&nested.Formatter{
|
||
|
TimestampFormat: "2006-01-02 15:04:05.000",
|
||
|
HideKeys: false,
|
||
|
FieldsOrder: []string{"PID", "FilePath", "OperationID"},
|
||
|
})
|
||
|
//File name and line number display hook
|
||
|
logger.AddHook(newFileHook())
|
||
|
|
||
|
//Send logs to elasticsearch hook
|
||
|
if config.Config.Log.ElasticSearchSwitch {
|
||
|
logger.AddHook(newEsHook(moduleName))
|
||
|
}
|
||
|
//Log file segmentation hook
|
||
|
hook := NewLfsHook(time.Duration(config.Config.Log.RotationTime)*time.Hour, config.Config.Log.RemainRotationCount, moduleName)
|
||
|
logger.AddHook(hook)
|
||
|
return &Logger{
|
||
|
logger,
|
||
|
os.Getpid(),
|
||
|
}
|
||
|
}
|
||
|
func NewLfsHook(rotationTime time.Duration, maxRemainNum uint, moduleName string) logrus.Hook {
|
||
|
lfsHook := lfshook.NewHook(lfshook.WriterMap{
|
||
|
logrus.DebugLevel: initRotateLogs(rotationTime, maxRemainNum, "all", moduleName),
|
||
|
logrus.InfoLevel: initRotateLogs(rotationTime, maxRemainNum, "all", moduleName),
|
||
|
logrus.WarnLevel: initRotateLogs(rotationTime, maxRemainNum, "all", moduleName),
|
||
|
logrus.ErrorLevel: initRotateLogs(rotationTime, maxRemainNum, "all", moduleName),
|
||
|
}, &nested.Formatter{
|
||
|
TimestampFormat: "2006-01-02 15:04:05.000",
|
||
|
HideKeys: false,
|
||
|
FieldsOrder: []string{"PID", "FilePath", "OperationID"},
|
||
|
})
|
||
|
return lfsHook
|
||
|
}
|
||
|
func initRotateLogs(rotationTime time.Duration, maxRemainNum uint, level string, moduleName string) *rotatelogs.RotateLogs {
|
||
|
if moduleName != "" {
|
||
|
moduleName = moduleName + "."
|
||
|
}
|
||
|
writer, err := rotatelogs.New(
|
||
|
config.Config.Log.StorageLocation+moduleName+level+"."+"%Y-%m-%d",
|
||
|
rotatelogs.WithRotationTime(rotationTime),
|
||
|
rotatelogs.WithRotationCount(maxRemainNum),
|
||
|
)
|
||
|
if err != nil {
|
||
|
panic(err.Error())
|
||
|
} else {
|
||
|
return writer
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Info(OperationID string, args ...interface{}) {
|
||
|
logger.WithFields(logrus.Fields{
|
||
|
"OperationID": OperationID,
|
||
|
"PID": logger.Pid,
|
||
|
}).Infoln(args)
|
||
|
}
|
||
|
|
||
|
func Error(OperationID string, args ...interface{}) {
|
||
|
logger.WithFields(logrus.Fields{
|
||
|
"OperationID": OperationID,
|
||
|
"PID": logger.Pid,
|
||
|
}).Errorln(args)
|
||
|
}
|
||
|
|
||
|
func Debug(OperationID string, args ...interface{}) {
|
||
|
logger.WithFields(logrus.Fields{
|
||
|
"OperationID": OperationID,
|
||
|
"PID": logger.Pid,
|
||
|
}).Debugln(args)
|
||
|
}
|
||
|
|
||
|
//Deprecated
|
||
|
func Warning(token, OperationID, format string, args ...interface{}) {
|
||
|
logger.WithFields(logrus.Fields{
|
||
|
"PID": logger.Pid,
|
||
|
"OperationID": OperationID,
|
||
|
}).Warningf(format, args...)
|
||
|
|
||
|
}
|
||
|
|
||
|
//Deprecated
|
||
|
func InfoByArgs(format string, args ...interface{}) {
|
||
|
logger.WithFields(logrus.Fields{}).Infof(format, args)
|
||
|
}
|
||
|
|
||
|
//Deprecated
|
||
|
func ErrorByArgs(format string, args ...interface{}) {
|
||
|
logger.WithFields(logrus.Fields{}).Errorf(format, args...)
|
||
|
}
|
||
|
|
||
|
//Print log information in k, v format,
|
||
|
//kv is best to appear in pairs. tipInfo is the log prompt information for printing,
|
||
|
//and kv is the key and value for printing.
|
||
|
//Deprecated
|
||
|
func InfoByKv(tipInfo, OperationID string, args ...interface{}) {
|
||
|
fields := make(logrus.Fields)
|
||
|
argsHandle(OperationID, fields, args)
|
||
|
logger.WithFields(fields).Info(tipInfo)
|
||
|
}
|
||
|
|
||
|
//Deprecated
|
||
|
func ErrorByKv(tipInfo, OperationID string, args ...interface{}) {
|
||
|
fields := make(logrus.Fields)
|
||
|
argsHandle(OperationID, fields, args)
|
||
|
logger.WithFields(fields).Error(tipInfo)
|
||
|
}
|
||
|
|
||
|
//Deprecated
|
||
|
func DebugByKv(tipInfo, OperationID string, args ...interface{}) {
|
||
|
fields := make(logrus.Fields)
|
||
|
argsHandle(OperationID, fields, args)
|
||
|
logger.WithFields(fields).Debug(tipInfo)
|
||
|
}
|
||
|
|
||
|
//Deprecated
|
||
|
func WarnByKv(tipInfo, OperationID string, args ...interface{}) {
|
||
|
fields := make(logrus.Fields)
|
||
|
argsHandle(OperationID, fields, args)
|
||
|
logger.WithFields(fields).Warn(tipInfo)
|
||
|
}
|
||
|
|
||
|
//internal method
|
||
|
func argsHandle(OperationID string, fields logrus.Fields, args []interface{}) {
|
||
|
for i := 0; i < len(args); i += 2 {
|
||
|
if i+1 < len(args) {
|
||
|
fields[fmt.Sprintf("%v", args[i])] = args[i+1]
|
||
|
} else {
|
||
|
fields[fmt.Sprintf("%v", args[i])] = ""
|
||
|
}
|
||
|
}
|
||
|
fields["OperationID"] = OperationID
|
||
|
fields["PID"] = logger.Pid
|
||
|
}
|
||
|
func NewInfo(OperationID string, args ...interface{}) {
|
||
|
logger.WithFields(logrus.Fields{
|
||
|
"OperationID": OperationID,
|
||
|
"PID": logger.Pid,
|
||
|
}).Infoln(args)
|
||
|
}
|
||
|
func NewError(OperationID string, args ...interface{}) {
|
||
|
logger.WithFields(logrus.Fields{
|
||
|
"OperationID": OperationID,
|
||
|
"PID": logger.Pid,
|
||
|
}).Errorln(args)
|
||
|
}
|
||
|
func NewDebug(OperationID string, args ...interface{}) {
|
||
|
logger.WithFields(logrus.Fields{
|
||
|
"OperationID": OperationID,
|
||
|
"PID": logger.Pid,
|
||
|
}).Debugln(args)
|
||
|
}
|
||
|
func NewWarn(OperationID string, args ...interface{}) {
|
||
|
logger.WithFields(logrus.Fields{
|
||
|
"OperationID": OperationID,
|
||
|
"PID": logger.Pid,
|
||
|
}).Warnln(args)
|
||
|
}
|