|
@@ -2,13 +2,11 @@ package utils
|
|
|
|
|
|
import (
|
|
|
"encoding/json"
|
|
|
- "fmt"
|
|
|
"github.com/beego/beego/v2/core/logs"
|
|
|
"github.com/sirupsen/logrus"
|
|
|
"gopkg.in/natefinch/lumberjack.v2"
|
|
|
"os"
|
|
|
"path"
|
|
|
- "time"
|
|
|
)
|
|
|
|
|
|
const (
|
|
@@ -22,20 +20,22 @@ var ApiLog = logrus.New()
|
|
|
var Binlog *logs.BeeLogger
|
|
|
|
|
|
func init() {
|
|
|
+ if LogMaxDays == 0 {
|
|
|
+ LogMaxDays = 30
|
|
|
+ }
|
|
|
logPath := LogPath
|
|
|
if logPath == "" {
|
|
|
logPath = DefaultLogPath
|
|
|
}
|
|
|
logFile := LogFile
|
|
|
if logFile == "" {
|
|
|
- logFile = fmt.Sprintf("%s.log", time.Now().Format(FormatDateUnSpace))
|
|
|
+ logFile = "filelog.log"
|
|
|
}
|
|
|
os.MkdirAll(logPath, os.ModePerm)
|
|
|
|
|
|
|
|
|
logFileName := path.Join(logPath, logFile)
|
|
|
logConf := getDefaultLogrusConfig(logFileName)
|
|
|
- logConf.MaxAge = 1
|
|
|
|
|
|
rolling(FileLog, logConf)
|
|
|
|
|
@@ -49,7 +49,6 @@ func init() {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
initBinlog()
|
|
|
initApiLog()
|
|
@@ -76,7 +75,7 @@ func initBinlog() {
|
|
|
}
|
|
|
binlogFile := BinLogFile
|
|
|
if binlogFile == "" {
|
|
|
- binlogFile = fmt.Sprintf("%s.log", time.Now().Format(FormatDateUnSpace))
|
|
|
+ binlogFile = "binlog.log"
|
|
|
}
|
|
|
os.MkdirAll(binlogPath, os.ModePerm)
|
|
|
logFileName := path.Join(binlogPath, binlogFile)
|
|
@@ -98,7 +97,7 @@ func initApiLog() {
|
|
|
}
|
|
|
logFile := ApiLogFile
|
|
|
if logFile == "" {
|
|
|
- logFile = fmt.Sprintf("%s.log", time.Now().Format(FormatDateUnSpace))
|
|
|
+ logFile = "apilog.log"
|
|
|
}
|
|
|
os.MkdirAll(logPath, os.ModePerm)
|
|
|
|
|
@@ -123,11 +122,11 @@ func rolling(fLog *logrus.Logger, config *lumberjack.Logger) {
|
|
|
|
|
|
func getDefaultLogrusConfig(logFile string) (config *lumberjack.Logger) {
|
|
|
config = &lumberjack.Logger{
|
|
|
- Filename: logFile,
|
|
|
- MaxSize: 256,
|
|
|
- MaxBackups: 3,
|
|
|
- MaxAge: 7,
|
|
|
- Compress: true,
|
|
|
+ Filename: logFile,
|
|
|
+ MaxSize: 256,
|
|
|
+ MaxBackups: 0,
|
|
|
+ MaxAge: LogMaxDays,
|
|
|
+ Compress: true,
|
|
|
LocalTime: true,
|
|
|
}
|
|
|
return
|
|
@@ -139,7 +138,7 @@ func getDefaultLogConfig() logConfig {
|
|
|
MaxLines: 0,
|
|
|
MaxSize: 1 << 28,
|
|
|
Daily: true,
|
|
|
- MaxDays: 7,
|
|
|
+ MaxDays: LogMaxDays,
|
|
|
Rotate: true,
|
|
|
Level: logs.LevelTrace,
|
|
|
|