1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Add route handler info for debugging purpose (#30705)

Follow #30519
This commit is contained in:
wxiaoguang
2024-04-26 17:09:49 +08:00
committed by GitHub
parent 68a3e6b5e6
commit 1e749b80d7
2 changed files with 7 additions and 1 deletions

View File

@@ -1612,7 +1612,7 @@ func registerRoutes(m *web.Route) {
m.NotFound(func(w http.ResponseWriter, req *http.Request) {
ctx := context.GetWebContext(req)
routing.UpdateFuncInfo(ctx, routing.GetFuncInfo(ctx.NotFound, "GlobalNotFound"))
routing.UpdateFuncInfo(ctx, routing.GetFuncInfo(ctx.NotFound, "WebNotFound"))
ctx.NotFound("", nil)
})
}