mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 21:28:22 +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")
|
|
}
|