Parcourir la source

去除冗余日志

yumeng il y a 5 ans
Parent
commit
568b8053bd

+ 0 - 4
module-kuaishou/src/main/java/cn/com/ctop/kuaishou/modules/batch/service/impl/KuaishouInterfaceServiceImpl.java

@@ -1723,7 +1723,6 @@ public class KuaishouInterfaceServiceImpl implements IKuaishouInterfaceService {
 
             String result = HttpUtils.kuaiShouhttpPostRequest(url, param.toJSONString(), headers);
             JSONObject resultJson = JSONObject.parseObject(result);
-            System.err.println(resultJson);
             if (Check.isNull(resultJson)) {
                 log.error("获取广告创意返回结果为空,advertiserId:{}", token.getAccountId());
                 return;
@@ -3245,10 +3244,7 @@ public class KuaishouInterfaceServiceImpl implements IKuaishouInterfaceService {
             }
             param.put("page_size", 500);
             param.put("page", page);
-            //
             String result = HttpUtils.httpPostRequest(url, param, headers);
-
-            System.err.println(result);
             JSONObject resultJson = JSONObject.parseObject(result);
             Integer code = resultJson.getInteger("code");
             String message = resultJson.getString("message");