From e4e3b3fe9d883d74470ffffbe19ebb4d17540380 Mon Sep 17 00:00:00 2001 From: "autumn.g@foxmail.com" Date: Fri, 15 Dec 2023 15:56:02 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E6=89=93=E5=8D=B0=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lianlian/service/impl/LianLianServiceImpl.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/lianlian/service/impl/LianLianServiceImpl.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/lianlian/service/impl/LianLianServiceImpl.java index 27e273639..002db338b 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/lianlian/service/impl/LianLianServiceImpl.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/lianlian/service/impl/LianLianServiceImpl.java @@ -880,7 +880,7 @@ public class LianLianServiceImpl implements LianLianService { String response = HttpUtil.post(requestUrl, tokenRequest); LianLianResultVO result = JSON.parseObject(response, LianLianResultVO.class); - logger.info("获取令牌 result:{}", result); + // logger.info("获取令牌 result:{}", result); if (result.getRet() == 0) { // 解密data @@ -889,8 +889,9 @@ public class LianLianServiceImpl implements LianLianService { String dataStr = new String(plainText, "UTF-8"); Map resultMap = (Map) JSON.parse(dataStr); token = resultMap.get("AccessToken"); - logger.info("token: {}", token); + // logger.info("token: {}", token); } + logger.info("获取令牌 result:{}, token: {}", result, token); } catch (Exception e) { return token; }