Finish maintain the log file.

This commit is contained in:
zicla 2019-04-26 01:28:50 +08:00
parent fd1a75bc0a
commit 61b14fe82b

View File

@ -134,7 +134,7 @@ func (this *Logger) openFile() {
panic("日志文件无法正常打开: " + err.Error())
}
this.goLogger = log.New(f, "", log.LstdFlags|log.Lshortfile)
this.goLogger = log.New(f, "", log.Ltime|log.Lshortfile)
this.file = f
}