yumeng 4 years ago
parent
commit
cb5f9e1132

+ 2 - 2
module-kuaishou/src/main/java/cn/com/ctop/kuaishou/modules/batch/service/impl/KuaiShouReportDailyMaterialServiceImpl.java

@@ -62,7 +62,7 @@ public class KuaiShouReportDailyMaterialServiceImpl extends ServiceImpl<KuaiShou
 
         String result = HttpUtils.httpPostRequest(url, param, headers);
         JSONObject resultJson = JSONObject.parseObject(result);
-        log.info("快手返回数据:{}",resultJson);
+    //    log.info("快手返回数据:{}",resultJson);
         if (Check.isNull(resultJson)) {
             return;
         }
@@ -93,7 +93,7 @@ public class KuaiShouReportDailyMaterialServiceImpl extends ServiceImpl<KuaiShou
 
             addList.add(material);
         }
-        log.info("addList:{}",addList);
+  //      log.info("addList:{}",addList);
         dailyMaterialMapper.batchReplace(addList);
         getMaterialReportByAccountIdAndStatDate(accountId, token, startDate, endDate, page + 1);
     }