From fbd0ab240ce0d69f7ba8d458cc1ff20c5a1ef52e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=AD=E5=87=AF=E5=87=AF?= Date: Tue, 24 Sep 2024 15:01:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=E5=BE=AE=E4=BF=A1=E5=B0=8F?= =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E5=92=8C=E6=94=AF=E4=BB=98=E5=AE=9D=E5=B0=8F?= =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E7=99=BB=E5=BD=95=E5=85=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/cashierservice/controller/LoginContoller.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/chaozhanggui/system/cashierservice/controller/LoginContoller.java b/src/main/java/com/chaozhanggui/system/cashierservice/controller/LoginContoller.java index 3d9f75e..a4d6bfa 100644 --- a/src/main/java/com/chaozhanggui/system/cashierservice/controller/LoginContoller.java +++ b/src/main/java/com/chaozhanggui/system/cashierservice/controller/LoginContoller.java @@ -112,7 +112,7 @@ public class LoginContoller { // 2.开发者服务器 登录凭证校验接口 appi + appsecret + code JSONObject wxResp = WechatUtil.getSessionKeyOrOpenId(code, customAppId, customSecrete); Integer errCode = wxResp.getInteger("errcode"); - log.debug("微信获取openid响应报文:{}", wxResp.toJSONString()); + log.info("微信获取openid响应报文:{}", wxResp.toJSONString()); if (errCode.intValue() != 0) { return Result.fail("登录失败:" + wxResp.getString("errmsg")); }