From d127c3847b1ab842ca01767b6e1bef2557e7a5b2 Mon Sep 17 00:00:00 2001 From: "YAS\\29473" <2947326429@qq.com> Date: Wed, 21 Jan 2026 14:43:27 +0800 Subject: [PATCH] update --- .../src/main/java/com/jsowell/pile/rpc/WccServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/rpc/WccServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/rpc/WccServiceImpl.java index ce1bdc3d7..887e86502 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/rpc/WccServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/rpc/WccServiceImpl.java @@ -250,7 +250,7 @@ public class WccServiceImpl implements WccService { public List queryStationToPlatformList(String stationId) { List thirdPartySecretInfoVOS = thirdpartySecretInfoService.queryStationToPlatformList(stationId); if (thirdPartySecretInfoVOS == null || thirdPartySecretInfoVOS.isEmpty()) { - log.info("根据站点id查询第三方平台配置列表数量:0"); +// log.info("根据站点id查询第三方平台配置列表数量:0"); return Collections.emptyList(); } List result = new ArrayList<>(thirdPartySecretInfoVOS.size()); @@ -276,7 +276,7 @@ public class WccServiceImpl implements WccService { .build(); result.add(build); } - log.info("根据站点id查询第三方平台配置列表数量:{},详情:{}", result.size(), JSON.toJSONString(result)); +// log.info("根据站点id查询第三方平台配置列表数量:{},详情:{}", result.size(), JSON.toJSONString(result)); return result; }