mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
18 lines
296 B
Go
18 lines
296 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/g/os/glog"
|
|
"github.com/gogf/gf/g/os/gtime"
|
|
"time"
|
|
)
|
|
|
|
// 测试删除日志文件是否会重建日志文件
|
|
func main() {
|
|
path := "/Users/john/Temp/test"
|
|
glog.SetPath(path)
|
|
for {
|
|
glog.Println(gtime.Now().String())
|
|
time.Sleep(time.Second)
|
|
}
|
|
}
|