gf/.example/other/test.go

13 lines
148 B
Go
Raw Normal View History

2017-11-23 10:21:28 +08:00
package main
2019-07-20 16:41:17 +08:00
import (
"github.com/gogf/gf/os/glog"
)
2020-03-19 22:56:12 +08:00
2020-03-22 00:15:59 +08:00
func main() {
l := glog.New()
l.Info("info1")
l.SetLevelStr("notice")
l.Info("info2")
2019-07-20 16:41:17 +08:00
}