Browse Source

Improve error handling

pull/4150/head
Unknwon 8 years ago
parent
commit
b481927d5e
No known key found for this signature in database
GPG Key ID: 25B575AE3213B2B3
  1. 2
      modules/context/context.go

2
modules/context/context.go

@ -94,7 +94,7 @@ func (ctx *Context) Handle(status int, title string, err error) {
ctx.Data["Title"] = "Page Not Found"
case 500:
ctx.Data["Title"] = "Internal Server Error"
log.Error(4, "%s: %v", title, err)
log.Error(2, "%s: %v", title, err)
if !setting.ProdMode || (ctx.IsSigned && ctx.User.IsAdmin) {
ctx.Data["ErrorMsg"] = err
}

Loading…
Cancel
Save