mirror of
https://gitee.com/johng/gf
synced 2026-07-03 11:51:04 +08:00
12 lines
150 B
Go
12 lines
150 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/os/glog"
|
|
)
|
|
|
|
func main() {
|
|
l := glog.New()
|
|
l.SetLevelPrefix(glog.LEVEL_DEBU, "debug")
|
|
l.Debug("test")
|
|
}
|