mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 02:50:56 +00:00
Merge pull request #787 from francoishill/patch-21
Proposal for adding a ":" for stack trace printout
This commit is contained in:
commit
e6b42a4070
@ -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))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user