fix: 非debug模式不创建日志目录

This commit is contained in:
Mmx233
2022-03-02 22:54:01 +08:00
parent bef90ef4d7
commit a99cdfabd0
2 changed files with 7 additions and 5 deletions

View File

@@ -16,7 +16,6 @@ func main() {
); e != nil {
log.Fatalln("初始化日志失败: ", e)
}
defer util.Log.CatchRecover()
if global.Flags.RunningDaemon {
//后台挂起模式中

View File

@@ -27,12 +27,15 @@ func (c *loG) Init(debug, logFile, outPut bool, path string) error {
c.timeStamp = time.Now().Format("2006.01.02-15.04.05")
//日志路径初始化与处理
if c.DebugMode {
if !strings.HasSuffix(path, "/") {
path += "/"
}
c.Path = path
return os.MkdirAll(path, os.ModePerm)
}
return nil
}
func (c *loG) time() string {
return time.Now().Format("2006/01/02 15:04:05")