Commit c1c73896 by 孙龙

up

parent 55310da5
Showing with 2 additions and 2 deletions
......@@ -15,14 +15,14 @@ func RecoveryMiddleware() gin.HandlerFunc {
defer func() {
if err := recover(); err != nil {
//先做一下日志记录
//fmt.Println(string(debug.Stack()))
//fmt.Println(err)
//util.ComLogNotice(c, "_com_panic", map[string]interface{}{
// "error": fmt.Sprint(err),
// "stack": string(debug.Stack()),
//})
if lib.Instance("proxy").GetString("base.debug_mode") != "debug" {
//ResponseError(c, 500, errors.New("内部错误"))
common.Output(c,500,"内部错误",nil)
common.Output(c,500,"内部错误",errors.New(fmt.Sprint(err)))
c.Abort()
return
} else {
......
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 sign in to comment