mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
13 lines
148 B
Go
13 lines
148 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/os/glog"
|
|
)
|
|
|
|
func main() {
|
|
l := glog.New()
|
|
l.Info("info1")
|
|
l.SetLevelStr("notice")
|
|
l.Info("info2")
|
|
}
|