mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 13:18:01 +08:00
14 lines
219 B
Go
14 lines
219 B
Go
package main
|
||
|
||
import (
|
||
"github.com/gogf/gf/os/glog"
|
||
)
|
||
|
||
// 设置日志等级,过滤掉Info日志信息
|
||
func main() {
|
||
l := glog.New()
|
||
l.Info("info1")
|
||
l.SetLevel(glog.LEVEL_ALL ^ glog.LEVEL_INFO)
|
||
l.Info("info2")
|
||
}
|