Browse Source

feature: 变更通知提示修改

mazq 1 year ago
parent
commit
4a995bc423

+ 3 - 3
dcuc-auth-service/src/main/java/com/dragoninfo/dcuc/auth/business/impl/NotifyBusinessImpl.java

@@ -77,8 +77,8 @@ public class NotifyBusinessImpl implements INotifyBusiness {
         reqVO.setUserTokens(tokenList);
         reqVO.setUserTokens(tokenList);
 
 
         String postJson = JSONUtil.toJsonStr(reqVO);
         String postJson = JSONUtil.toJsonStr(reqVO);
-        log.info("App permission notify URL:{}", notifyUrl);
-        log.info("App permission notify post content:{}", postJson);
+        log.info("向认证服务发送应用级权限变更通知路径:{}", notifyUrl);
+        log.info("向认证服务发送应用级权限变更通知内容:{}", postJson);
         String postResp;
         String postResp;
         try {
         try {
             postResp = HttpRequest.post(notifyUrl)
             postResp = HttpRequest.post(notifyUrl)
@@ -92,7 +92,7 @@ public class NotifyBusinessImpl implements INotifyBusiness {
             throw new RemoteAccessException(e.getMessage());
             throw new RemoteAccessException(e.getMessage());
         }
         }
 
 
-        log.info("App permission notify post response:{}", postResp);
+        log.info("向认证服务发送应用级权限变更响应:{}", postResp);
         BimAppPermissionUpdateRespVo bimAppPermissionUpdateRespVo = JsonUtils.parseObject(postResp, BimAppPermissionUpdateRespVo.class);
         BimAppPermissionUpdateRespVo bimAppPermissionUpdateRespVo = JsonUtils.parseObject(postResp, BimAppPermissionUpdateRespVo.class);
 
 
         BimAppPermissionUpdateContentRespVO data = bimAppPermissionUpdateRespVo.getData();
         BimAppPermissionUpdateContentRespVO data = bimAppPermissionUpdateRespVo.getData();