Commit 5c0403c6 authored by Henry's avatar Henry

eventlog: buffer writes before pushing them to lumberjack - same effect, no...

eventlog: buffer writes before pushing them to lumberjack - same effect, no upstream changes. Thx @natefinch!
parent eacaa2d7
package eventlog
import (
"bufio"
"io"
"os"
......@@ -53,12 +54,12 @@ func Output(w io.Writer) Option {
func OutputRotatingLogFile(config LogRotatorConfig) Option {
return func() {
logrus.SetOutput(
&lumberjack.Logger{
bufio.NewWriter(&lumberjack.Logger{
Filename: config.Filename,
MaxSize: int(config.MaxSizeMB),
MaxBackups: int(config.MaxBackups),
MaxAge: int(config.MaxAgeDays),
})
}))
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment