Commit aae89576 authored by astaxie's avatar astaxie

fix #814

parent a907a864
...@@ -74,7 +74,7 @@ var ( ...@@ -74,7 +74,7 @@ var (
url_placeholder = "{{placeholder}}" url_placeholder = "{{placeholder}}"
FilterRouterLog func() bool FilterRouterLog func(*beecontext.Context) bool
) )
// To append a slice's value into "exceptMethod", for controller's methods shouldn't reflect to AutoRouter // To append a slice's value into "exceptMethod", for controller's methods shouldn't reflect to AutoRouter
...@@ -798,7 +798,7 @@ Admin: ...@@ -798,7 +798,7 @@ Admin:
} 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")
} }
if FilterRouterLog == nil || !FilterRouterLog() { if FilterRouterLog == nil || !FilterRouterLog(context) {
Debug(devinfo) Debug(devinfo)
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment