mirror of
https://gitee.com/johng/gf
synced 2026-06-22 16:14:26 +08:00
20 lines
281 B
Go
20 lines
281 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/gogf/gf/os/glog"
|
|
"github.com/gogf/gf/os/gtime"
|
|
"github.com/gogf/gf/os/gtimer"
|
|
)
|
|
|
|
func main() {
|
|
gtimer.SetTimeout(3*time.Second, func() {
|
|
glog.SetDebug(false)
|
|
})
|
|
for {
|
|
glog.Debug(gtime.Datetime())
|
|
time.Sleep(time.Second)
|
|
}
|
|
}
|