mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
14 lines
250 B
Go
14 lines
250 B
Go
package main
|
||
|
||
import (
|
||
"github.com/gogf/gf/frame/g"
|
||
"github.com/gogf/gf/os/glog"
|
||
)
|
||
|
||
// 设置日志等级,过滤掉Info日志信息
|
||
func main() {
|
||
g.Log().Info("info1")
|
||
g.Log().SetLevel(glog.LEVEL_ALL ^ glog.LEVEL_INFO)
|
||
g.Log().Info("info2")
|
||
}
|