mirror of
https://gitee.com/johng/gf
synced 2026-07-08 14:39:50 +08:00
13 lines
241 B
Go
13 lines
241 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/os/gcmd"
|
|
"github.com/gogf/gf/os/glog"
|
|
)
|
|
|
|
func main() {
|
|
glog.SetFlags(glog.F_TIME_DATE | glog.F_TIME_TIME | glog.F_FILE_SHORT)
|
|
glog.Debug("dd")
|
|
glog.Println("timeout", gcmd.GetOpt("timeout"))
|
|
}
|