From b91e5d5471533548e51eb7c9e4ae9f142a297246 Mon Sep 17 00:00:00 2001 From: Kurisu Date: Thu, 22 Oct 2020 20:03:12 +0800 Subject: [PATCH] :construction: 跟进池接口调整 --- fw-valhalla-rpc/src/main/java/cn/fw/valhalla/rpc/erp/UserRoleRpcService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fw-valhalla-rpc/src/main/java/cn/fw/valhalla/rpc/erp/UserRoleRpcService.java b/fw-valhalla-rpc/src/main/java/cn/fw/valhalla/rpc/erp/UserRoleRpcService.java index 84ee60c..edde2ba 100644 --- a/fw-valhalla-rpc/src/main/java/cn/fw/valhalla/rpc/erp/UserRoleRpcService.java +++ b/fw-valhalla-rpc/src/main/java/cn/fw/valhalla/rpc/erp/UserRoleRpcService.java @@ -5,6 +5,7 @@ import cn.fw.erp.sdk.api.UserRoleApi; import cn.fw.erp.sdk.api.result.UserRoleDataRange; import cn.fw.erp.sdk.api.result.UserRoleInfo; import com.alibaba.fastjson.JSON; +import com.alibaba.fastjson.JSONObject; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; @@ -43,7 +44,7 @@ public class UserRoleRpcService { } try { Message> msg = userRoleApi.queryUserRoleDataRange(userId, roleCode); - log.warn("调用ERP系统查询用户数据范围,userId:{},roleCode:{}, result:{}", userId, roleCode, msg); + log.warn("调用ERP系统查询用户数据范围,userId:{},roleCode:{}, result:{}", userId, roleCode, JSONObject.toJSONString(msg)); if (!msg.isSuccess()) { return Collections.emptyList(); } -- libgit2 0.22.2