mirror of
https://github.com/astaxie/beego.git
synced 2025-06-24 06:50:19 +00:00
Merge pull request #2920 from chenpeiyuan/develop
avoid unnecessary read of large log file
This commit is contained in:
@ -182,7 +182,7 @@ func (w *fileLogWriter) initFd() error {
|
||||
if w.Daily {
|
||||
go w.dailyRotate(w.dailyOpenTime)
|
||||
}
|
||||
if fInfo.Size() > 0 {
|
||||
if fInfo.Size() > 0 && w.MaxLines > 0 {
|
||||
count, err := w.lines()
|
||||
if err != nil {
|
||||
return err
|
||||
|
Reference in New Issue
Block a user