Commit 7cf8df3d 7cf8df3df04e5d3f0cadf0f220c4c6a748cea39c by xianghan

1.update

1 parent 5d345d7d
...@@ -63,7 +63,6 @@ public class WeiXinEventConsumer { ...@@ -63,7 +63,6 @@ public class WeiXinEventConsumer {
63 String msgType = wechatMsg.getString("MsgType"); 63 String msgType = wechatMsg.getString("MsgType");
64 if ("event".equals(msgType)) { 64 if ("event".equals(msgType)) {
65 String event = wechatMsg.getString("Event"); 65 String event = wechatMsg.getString("Event");
66 log.info("event ===>> [{}]",event);
67 String eventKey = wechatMsg.getString("EventKey"); 66 String eventKey = wechatMsg.getString("EventKey");
68 67
69 SubscribeBean subscribeBean = new SubscribeBean(); 68 SubscribeBean subscribeBean = new SubscribeBean();
...@@ -101,8 +100,7 @@ public class WeiXinEventConsumer { ...@@ -101,8 +100,7 @@ public class WeiXinEventConsumer {
101 e.printStackTrace(); 100 e.printStackTrace();
102 log.info("ucEventConsumer ====>>>> end"); 101 log.info("ucEventConsumer ====>>>> end");
103 } 102 }
104 }
105
106 103
104 }
107 105
108 } 106 }
......