Commit 85b2f46c authored by 张辰's avatar 张辰

add log

parent 07dbf80d
...@@ -95,6 +95,8 @@ public class FeignService { ...@@ -95,6 +95,8 @@ public class FeignService {
if (!feignIds.isEmpty()) { if (!feignIds.isEmpty()) {
List<T> remoteList = feignFunc.apply(feignIds); List<T> remoteList = feignFunc.apply(feignIds);
log.info("batchExecute feign returns {} -> {}", JSON.toJSONString(feignIds), JSON.toJSONString(remoteList));
if (remoteList != null) { if (remoteList != null) {
retList.addAll(remoteList); retList.addAll(remoteList);
retList.forEach(r -> { retList.forEach(r -> {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment