mirror of
https://gitee.com/johng/gf
synced 2026-07-06 13:42:46 +08:00
13 lines
166 B
Go
13 lines
166 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/g/os/glog"
|
|
)
|
|
|
|
func main() {
|
|
l := glog.New()
|
|
l.SetPrefix("[API]")
|
|
l.Println("hello world")
|
|
l.Error("error occurred")
|
|
}
|