mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 14:30:56 +00:00
beego: update the debug info rules
This commit is contained in:
parent
8b8638c507
commit
986e91b7d6
@ -591,6 +591,7 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
|
||||
|
||||
serverStaticRouter(context)
|
||||
if w.started {
|
||||
findrouter = true
|
||||
goto Admin
|
||||
}
|
||||
|
||||
@ -769,9 +770,9 @@ Admin:
|
||||
if RunMode == "dev" {
|
||||
var devinfo string
|
||||
if findrouter {
|
||||
devinfo = fmt.Sprintf("| % -10s| % -16s | % -10s | % -40s | % -10s | % -40s |", "beego", timeend.String(), r.Method, r.URL.Path, "match", routerInfo.pattern)
|
||||
devinfo = fmt.Sprintf("| % -10s | % -40s | % -16s | % -10s | % -40s |", r.Method, r.URL.Path, timeend.String(), "match", routerInfo.pattern)
|
||||
} else {
|
||||
devinfo = fmt.Sprintf("| % -10s| % -16s | % -10s | % -40s | % -10s |", "beego", timeend.String(), r.Method, r.URL.Path, "notmatch")
|
||||
devinfo = fmt.Sprintf("| % -10s | % -40s | % -16s | % -10s |", r.Method, r.URL.Path, timeend.String(), "notmatch")
|
||||
}
|
||||
Debug(devinfo)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user