1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 01:34:14 +00:00

Merge branch 'develop' of https://github.com/astaxie/beego into develop

This commit is contained in:
astaxie 2014-09-02 14:42:02 +08:00
commit 0692f92890

View File

@ -818,8 +818,8 @@ func (p *ControllerRegistor) recoverPanic(rw http.ResponseWriter, r *http.Reques
if !ok { if !ok {
break break
} }
Critical(file, line) Critical(fmt.Sprintf("%s:%d", file, line))
stack = stack + fmt.Sprintln(file, line) stack = stack + fmt.Sprintln(fmt.Sprintf("%s:%d", file, line))
} }
middleware.ShowErr(err, rw, r, stack) middleware.ShowErr(err, rw, r, stack)
} }
@ -840,7 +840,7 @@ func (p *ControllerRegistor) recoverPanic(rw http.ResponseWriter, r *http.Reques
if !ok { if !ok {
break break
} }
Critical(file, line) Critical(fmt.Sprintf("%s:%d", file, line))
} }
} }
} }