add rotating log files daily feature; add file log config

master v0.0.3
ehlxr 2019-11-07 17:04:36 +08:00
parent 911f959018
commit b3fbc466f1
3 changed files with 59 additions and 35 deletions

1
go.mod
View File

@ -4,6 +4,7 @@ go 1.13
require (
github.com/pkg/errors v0.8.1
github.com/robfig/cron/v3 v3.0.0
go.uber.org/zap v1.12.0
gopkg.in/natefinch/lumberjack.v2 v2.0.0
)

75
log.go
View File

@ -9,11 +9,11 @@ import (
"strings"
"time"
"github.com/ehlxr/log/encoder"
"github.com/ehlxr/log/bufferpool"
"github.com/ehlxr/log/crash"
"github.com/ehlxr/log/encoder"
"github.com/pkg/errors"
"github.com/robfig/cron/v3"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
@ -32,10 +32,9 @@ const (
type logConfig struct {
Level zapcore.Level
FilePath string
EnableColors bool
CrashLogPath string
ErrorLogPath string
CrashLogFilename string
ErrorLogFilename string
EnableLineNumber bool
// enable the truncation of the level text to 4 characters.
@ -45,21 +44,15 @@ type logConfig struct {
EnableCapitalLevel bool
atomicLevel zap.AtomicLevel
Name string
*lumberjack.Logger
}
func init() {
lc := &logConfig{
Level: InfoLevel,
FilePath: "",
EnableColors: false,
CrashLogPath: "",
ErrorLogPath: "",
EnableLineNumber: false,
EnableLevelTruncation: false,
EnableErrorStacktrace: false,
TimestampFormat: "",
EnableCapitalLevel: false,
Name: "",
Logger: &lumberjack.Logger{
LocalTime: true,
},
}
logger = lc.newLogger().Sugar()
@ -70,23 +63,32 @@ func (lc *logConfig) Init() {
}
func NewLogConfig() *logConfig {
return &logConfig{
config := &logConfig{
Level: DebugLevel,
FilePath: "./logs/",
EnableColors: true,
CrashLogPath: "./logs/crash.log",
ErrorLogPath: "./logs/error_",
CrashLogFilename: "./logs/crash.log",
ErrorLogFilename: "./logs/error.log",
EnableLineNumber: true,
EnableLevelTruncation: true,
EnableErrorStacktrace: true,
TimestampFormat: "2006-01-02 15:04:05.000",
EnableCapitalLevel: true,
Logger: &lumberjack.Logger{
Filename: "./logs/log.log",
MaxSize: 200,
MaxAge: 0,
MaxBackups: 30,
LocalTime: true,
Compress: false,
},
}
return config
}
func (lc *logConfig) newLogger() *zap.Logger {
if lc.CrashLogPath != "" {
writeCrashLog(lc.CrashLogPath)
if lc.CrashLogFilename != "" {
writeCrashLog(lc.CrashLogFilename)
}
lc.atomicLevel = zap.NewAtomicLevelAt(lc.Level)
@ -99,11 +101,11 @@ func (lc *logConfig) newLogger() *zap.Logger {
lc.atomicLevel,
)}
if lc.FilePath != "" {
if lc.Filename != "" {
cores = append(cores, lc.fileCore())
}
if lc.ErrorLogPath != "" {
if lc.ErrorLogFilename != "" {
cores = append(cores, lc.errorFileCore())
}
@ -164,7 +166,7 @@ func (lc *logConfig) fileCore() zapcore.Core {
// zapcore.Lock(os.Stdout),
// lc.fileWriteSyncer(),
// ),
fileWriteSyncer(lc.FilePath),
lc.fileWriteSyncer(lc.Filename),
lc.atomicLevel,
)
}
@ -173,7 +175,7 @@ func (lc *logConfig) errorFileCore() zapcore.Core {
return zapcore.NewCore(
encoder.NewTextEncoder(lc.encoderConfig()),
fileWriteSyncer(lc.ErrorLogPath),
lc.fileWriteSyncer(lc.ErrorLogFilename),
zap.LevelEnablerFunc(func(lvl zapcore.Level) bool {
return lvl >= zapcore.ErrorLevel
}),
@ -219,7 +221,7 @@ func trimCallerFilePath(ec zapcore.EntryCaller) string {
return fmt.Sprintf(" %s", caller)
}
func fileWriteSyncer(name string) zapcore.WriteSyncer {
func (lc *logConfig) fileWriteSyncer(fileName string) zapcore.WriteSyncer {
// go get github.com/lestrrat-go/file-rotatelogs
// writer, err := rotatelogs.New(
// name+".%Y%m%d",
@ -232,14 +234,21 @@ func fileWriteSyncer(name string) zapcore.WriteSyncer {
// }
writer := &lumberjack.Logger{
Filename: fmt.Sprintf("%s%s.log", name, time.Now().Format("2006-01-02")),
MaxSize: 500, // 单个日志文件大小MB
MaxBackups: 10,
MaxAge: 30, // 保留多少天的日志
LocalTime: true,
Compress: true,
Filename: fileName,
MaxSize: lc.MaxSize, // 单个日志文件大小MB
MaxBackups: lc.MaxBackups,
MaxAge: lc.MaxAge, // 保留多少天的日志
LocalTime: lc.LocalTime,
Compress: lc.Compress,
}
// Rotating log files daily
runner := cron.New(cron.WithSeconds(), cron.WithLocation(time.UTC))
_, _ = runner.AddFunc("0 0 0 * * ? ", func() {
_ = writer.Rotate()
})
go runner.Run()
return zapcore.AddSync(writer)
}

View File

@ -2,6 +2,7 @@ package log
import (
"testing"
"time"
)
func TestLog(t *testing.T) {
@ -11,11 +12,10 @@ func TestLog(t *testing.T) {
// Panicf("this is %s message", "panic")
}
func TestLogWithConfig(t *testing.T) {
lc := NewLogConfig()
_ = lc.Level.Set("info")
lc.Name="main"
lc.Name = "main"
lc.Init()
Debugf("this is %s message", "debug")
@ -23,3 +23,17 @@ func TestLogWithConfig(t *testing.T) {
Errorf("this is %s message", "error")
// Panicf("this is %s message", "panic")
}
func TestLogRote(t *testing.T) {
lc := NewLogConfig()
_ = lc.Level.Set("info")
lc.Name = "main"
lc.MaxSize = 1
lc.Init()
for {
Infof("this is %s message", "info")
time.Sleep(time.Second)
}
}