Files
BitSrunLoginGo/global/log.go
2022-08-14 20:47:23 +08:00

35 lines
688 B
Go

package global
import (
log "github.com/sirupsen/logrus"
"io"
"os"
"strings"
)
func initLog() {
if Config.Settings.Debug.Enable {
log.SetLevel(log.DebugLevel)
if Config.Settings.Debug.WriteLog {
//日志路径初始化与处理
if !strings.HasSuffix(Config.Settings.Debug.LogPath, "/") {
Config.Settings.Debug.LogPath += "/"
}
e := os.MkdirAll(Config.Settings.Debug.LogPath, os.ModePerm)
if e != nil {
log.Fatalln(e)
}
f, e := os.OpenFile(Config.Settings.Debug.LogPath, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 700)
if e != nil {
log.Fatalln(e)
}
//设置双重输出
mw := io.MultiWriter(os.Stdout, f)
log.SetOutput(mw)
}
}
}