浏览代码

去除日志

zhaoxian 6 月之前
父节点
当前提交
95c88989f1

+ 0 - 3
ruixuan-live/src/main/java/com/ruixuan/isc/service/impl/KwaixiaodianOrderCursorListServiceImpl.java

@@ -388,7 +388,6 @@ public class KwaixiaodianOrderCursorListServiceImpl implements IKwaixiaodianOrde
 
     @Override
     public void afterSales(JSONObject eventJSon) {
-        log.info("测试----报文:{}", eventJSon);
         try {
             JSONObject info = eventJSon.getJSONObject("info");
             String openId = eventJSon.getString("openId");
@@ -396,11 +395,9 @@ public class KwaixiaodianOrderCursorListServiceImpl implements IKwaixiaodianOrde
                 String type = eventJSon.getString("event");
                 //售后单新增消息
                 if ("kwaishop_aftersales_addRefund".equals(type)) {
-                    log.info("测试---- add");
                     aftersalesAddRefund(info, openId);
                     //售后单更新消息
                 } else if ("kwaishop_aftersales_updateRefund".equals(type)) {
-                    log.info("测试---- update");
                     aftersalesUpdateRefund(info);
                 }
             }