Files
gf/.example/os/glog/glog_error.go

12 lines
122 B
Go
Raw Normal View History

package main
2019-07-29 21:01:19 +08:00
import "github.com/gogf/gf/os/glog"
func Test() {
2019-04-03 00:03:46 +08:00
glog.Error("This is error!")
}
func main() {
Test()
}