fix(auth): remove log

This commit is contained in:
zhansihu 2024-01-17 15:39:35 +08:00
parent 113ad0eb43
commit f3fd1ea4a4

View File

@ -747,7 +747,6 @@ public class TyrSaasAuthServiceImpl implements TyrSaasAuthService {
boolean suc = distinctSet.add(superAdmin.getIdentityId() + "-" + superAdmin.getIdentityType());
distinctMap.put(superAdmin.getOuId(), distinctSet);
if (!suc) {
log.info("duplicate identity:{}, identityType:{}", superAdmin.getIdentityId(), superAdmin.getIdentityType());
continue;
}
ListIdentityFromPermissionResp resp = result.getOrDefault(superAdmin.getOuId(), new ListIdentityFromPermissionResp());
@ -783,7 +782,6 @@ public class TyrSaasAuthServiceImpl implements TyrSaasAuthService {
boolean suc = distinctSet.add(relation.getIdentityId() + "-" + relation.getIdentityType());
distinctMap.put(relation.getOuId(), distinctSet);
if (!suc) {
log.info("duplicate identity:{}, identityType:{}", relation.getIdentityId(), relation.getIdentityType());
continue;
}