wangyunpeng 7 mesi fa
parent
commit
385d6c7966

+ 1 - 1
long-article-recommend-service/src/main/java/com/tzld/longarticle/recommend/server/remote/aigc/AIGCProduceContentListService.java

@@ -31,7 +31,7 @@ public class AIGCProduceContentListService {
         result.setData(new ArrayList<>());
         result.setTotalCount(0);
         if (planIdList.isEmpty()) {
-            System.out.println("getProduceContentListByPlanIdListRaw: planIdList empty");
+            log.info("getProduceContentListByPlanIdListRaw: planIdList empty");
             return result;
         }
 

+ 1 - 1
long-article-recommend-service/src/main/java/com/tzld/longarticle/recommend/server/service/recommend/ArticlePromotionService.java

@@ -205,7 +205,7 @@ public class ArticlePromotionService {
     public CommonListDataVO<ProduceContentListItemVO> getProduceContentListByPlanIdList(List<String> planIdList) {
         CommonListDataVO<ProduceContentListItemVO> result = new CommonListDataVO<>();
         if (planIdList.isEmpty()) {
-            System.out.println("getProduceContentListByPlanIdList: planIdList empty");
+            log.info("getProduceContentListByPlanIdList: planIdList empty");
             result.setData(new ArrayList<>());
             result.setTotalCount(0);
             return result;