12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package utils
- import (
- "github.com/sirupsen/logrus"
- "gopkg.in/natefinch/lumberjack.v2"
- "os"
- "path"
- )
- var (
- DefaultLogPath = "./rdlucklog"
- DefaultLogFile = "eta_task.log"
- DefaultBinlogPath = "./binlog"
- DefaultBinlogFile = "binlog.log"
- )
- var FileLog = logrus.New()
- var Binlog = logrus.New()
- func init() {
- logPath := LogPath
- if logPath == "" {
- logPath = DefaultLogPath
- }
- logFile := LogFile
- if logFile == "" {
- logFile = DefaultLogFile
- }
- os.MkdirAll(logPath, os.ModePerm)
-
- logFileName := path.Join(logPath, logFile)
-
- rolling(FileLog, logFileName)
-
-
- jsonFormat := new(logrus.JSONFormatter)
- jsonFormat.DisableHTMLEscape = true
- FileLog.SetFormatter(jsonFormat)
-
-
-
-
- initBinlog()
- }
- func initBinlog() {
-
- binlogPath := BinLogPath
- if binlogPath == "" {
- binlogPath = DefaultBinlogPath
- }
- binlogFile := BinLogFile
- if binlogFile == "" {
- binlogFile = DefaultBinlogFile
- }
- os.MkdirAll(binlogPath, os.ModePerm)
-
- logFileName := path.Join(binlogPath, binlogFile)
- rolling(Binlog, logFileName)
-
-
- jsonFormat := new(logrus.JSONFormatter)
- jsonFormat.DisableHTMLEscape = true
- Binlog.SetFormatter(jsonFormat)
- }
- func rolling(fLog *logrus.Logger, logFile string) {
-
- fLog.SetOutput(&lumberjack.Logger{
- Filename: logFile,
- MaxSize: 500,
- MaxBackups: 3,
- MaxAge: 7,
- Compress: true,
- })
- }
|