zqbao hai 9 meses
pai
achega
358c318b14
Modificáronse 3 ficheiros con 1 adicións e 8 borrados
  1. 0 3
      controllers/base_auth.go
  2. 1 2
      controllers/base_common.go
  3. 0 3
      controllers/user_login.go

+ 0 - 3
controllers/base_auth.go

@@ -164,9 +164,6 @@ func (c *BaseAuthController) ServeJSON(encoding ...bool) {
 			fmt.Println(body)
 			utils.ApiLog.Notice(body)
 		}
-		if baseRes.IsAddLog && c.SysUser != nil {
-			return
-		}
 	}
 
 	c.JSON(c.Data["json"], hasIndent, hasEncoding)

+ 1 - 2
controllers/base_common.go

@@ -45,8 +45,7 @@ func (c *BaseCommonController) ServeJSON(encoding ...bool) {
 	}
 	baseRes := c.Data["json"].(*models.BaseResponse)
 	if baseRes != nil && !baseRes.Success {
-		utils.ApiLog.Notice("异常提醒:"+utils.RunMode, "接口:"+"URI:"+c.Ctx.Input.URI()+";ErrMsg:"+baseRes.ErrMsg+";Msg"+baseRes.Msg)
-		return
+		utils.ApiLog.Info("异常提醒:"+utils.RunMode, "接口:"+"URI:"+c.Ctx.Input.URI()+";ErrMsg:"+baseRes.ErrMsg+";Msg"+baseRes.Msg)
 	}
 
 	c.JSON(c.Data["json"], hasIndent, hasEncoding)

+ 0 - 3
controllers/user_login.go

@@ -25,9 +25,6 @@ type UserLoginController struct {
 func (this *UserLoginController) Login() {
 	br := new(models.BaseResponse).Init()
 	defer func() {
-		if br.ErrMsg == "" {
-			br.IsSendEmail = false
-		}
 		this.Data["json"] = br
 		this.ServeJSON()
 	}()