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; }