Przeglądaj źródła

修改定时任务代码逻辑

syh 5 lat temu
rodzic
commit
4c97d056ef

+ 0 - 2
module-toutiao/src/main/java/cn/com/ctop/toutiao/service/impl/ByteDanceAdvertiserDataServiceImpl.java

@@ -108,9 +108,7 @@ public class ByteDanceAdvertiserDataServiceImpl implements IByteDanceAdvertiserD
         param.put("page", pageNum);
         param.put("page_size", 100);
         param.put("filtering", filtering);
-        log.info("查询广告计划信息参数:{}", param.toJSONString());
         JSONObject resultObject = HttpUtils.bytedanceGetRequest(token.getAccessToken(), url, param);
-        log.info("获取公告计划信息返回数据:{}", resultObject.toJSONString());
         Integer code = resultObject.getInteger("code");
         if (null == code || !code.equals(0)) {
             log.error("获取广告计划信息接口异常==》accountId:{},message:{}", accountId, resultObject.getString("message"));