mirror of
https://gitee.com/johng/gf
synced 2026-06-22 16:14:26 +08:00
16 lines
225 B
Go
16 lines
225 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/net/ghttp"
|
|
)
|
|
|
|
func main() {
|
|
s := ghttp.GetServer()
|
|
s.BindHandler("/log/error", func(r *ghttp.Request) {
|
|
panic("OMG")
|
|
})
|
|
s.SetErrorLogEnabled(true)
|
|
s.SetPort(8199)
|
|
s.Run()
|
|
}
|