mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
9f951c8fb5
Add human-readable log output. It prints out the exact source code line information.
37 lines
796 B
Go
37 lines
796 B
Go
package util
|
|
|
|
import (
|
|
"io"
|
|
"path/filepath"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
"gopkg.in/natefinch/lumberjack.v2"
|
|
|
|
"github.com/netbirdio/netbird/formatter"
|
|
)
|
|
|
|
// InitLog parses and sets log-level input
|
|
func InitLog(logLevel string, logPath string) error {
|
|
level, err := log.ParseLevel(logLevel)
|
|
if err != nil {
|
|
log.Errorf("Failed parsing log-level %s: %s", logLevel, err)
|
|
return err
|
|
}
|
|
|
|
if logPath != "" && logPath != "console" {
|
|
lumberjackLogger := &lumberjack.Logger{
|
|
// Log file absolute path, os agnostic
|
|
Filename: filepath.ToSlash(logPath),
|
|
MaxSize: 5, // MB
|
|
MaxBackups: 10,
|
|
MaxAge: 30, // days
|
|
Compress: true,
|
|
}
|
|
log.SetOutput(io.Writer(lumberjackLogger))
|
|
}
|
|
|
|
formatter.SetTextFormatter(log.StandardLogger())
|
|
log.SetLevel(level)
|
|
return nil
|
|
}
|