mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 19:41:00 +00:00
update the router info
This commit is contained in:
parent
e566322643
commit
e07d780dcf
@ -770,7 +770,11 @@ Admin:
|
|||||||
if RunMode == "dev" {
|
if RunMode == "dev" {
|
||||||
var devinfo string
|
var devinfo string
|
||||||
if findrouter {
|
if findrouter {
|
||||||
devinfo = fmt.Sprintf("| % -10s | % -40s | % -16s | % -10s | % -40s |", r.Method, r.URL.Path, timeend.String(), "match", routerInfo.pattern)
|
if routerInfo != nil {
|
||||||
|
devinfo = fmt.Sprintf("| % -10s | % -40s | % -16s | % -10s | % -40s |", r.Method, r.URL.Path, timeend.String(), "match", routerInfo.pattern)
|
||||||
|
} else {
|
||||||
|
devinfo = fmt.Sprintf("| % -10s | % -40s | % -16s | % -10s |", r.Method, r.URL.Path, timeend.String(), "match")
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
devinfo = fmt.Sprintf("| % -10s | % -40s | % -16s | % -10s |", r.Method, r.URL.Path, timeend.String(), "notmatch")
|
devinfo = fmt.Sprintf("| % -10s | % -40s | % -16s | % -10s |", r.Method, r.URL.Path, timeend.String(), "notmatch")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user