mirror of
https://gitee.com/johng/gf
synced 2026-07-06 13:42:46 +08:00
11 lines
117 B
Go
11 lines
117 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/os/glog"
|
|
)
|
|
|
|
func main() {
|
|
glog.Error("error")
|
|
glog.Errorfln("error")
|
|
}
|