mirror of
https://gitee.com/johng/gf
synced 2026-07-06 13:42:46 +08:00
19 lines
293 B
Go
19 lines
293 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/gogf/gf/os/glog"
|
|
"github.com/gogf/gf/os/gtime"
|
|
)
|
|
|
|
// 测试删除日志文件是否会重建日志文件
|
|
func main() {
|
|
path := "/Users/john/Temp/test"
|
|
glog.SetPath(path)
|
|
for {
|
|
glog.Println(gtime.Now().String())
|
|
time.Sleep(time.Second)
|
|
}
|
|
}
|