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; }