From bd9061f1b13a02f198cda816d36b7014ddd7f8ac Mon Sep 17 00:00:00 2001
From: chenjiahe <763432473@qq.com>
Date: 星期四, 21 十月 2021 10:36:42 +0800
Subject: [PATCH] 屏蔽打印日志

---
 src/main/java/com/hx/util/corp/CorpMpUtil.java |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/hx/util/corp/CorpMpUtil.java b/src/main/java/com/hx/util/corp/CorpMpUtil.java
index 98e460b..abc1f73 100644
--- a/src/main/java/com/hx/util/corp/CorpMpUtil.java
+++ b/src/main/java/com/hx/util/corp/CorpMpUtil.java
@@ -29,13 +29,10 @@
      * @return 杩斿洖
      */
     public static WeiXinInfo userInfo(String userId, String token) {
-        logger.info("userId:"+userId);
-        logger.info("token:"+token);
         Map<String,Object> map=new HashMap<>();
         map.put("access_token",token);
         map.put("userid",userId);
         String datas = HttpMethodUtil.HttpURLUtilJson(URL_GET_USER_INFO, null, map, null, "GET");
-        logger.info("datas:"+datas);
         WeiXinInfo weiXinInfo = JSONObject.parseObject(datas, WeiXinInfo.class);
         return weiXinInfo;
     }

--
Gitblit v1.8.0