增加全量日志

This commit is contained in:
dxc
2021-06-18 09:21:21 +08:00
parent a104ae518d
commit 2ab2a8b994

View File

@ -240,7 +240,9 @@ public class ProjectReEvaluationServiceImpl extends BaseServiceImpl<ProjectReEva
approve.setProFormNo(record.getProjectBizNum());
approve.setProFormName(record.getProjectName());
log.info("访问人员查询接口参数:"+ record.getOwnerContactId());
BaseResponse<LoginUserDetailVO> baseResponse = usercenterApi.getLoninUserDetail(record.getOwnerContactId());
log.info("访问人员查询接口返回结果:"+ JsonUtils.objectToJson(baseResponse));
if(!baseResponse.isSuccess()){
CommonExceptionEnum.FRAME_EXCEPTION_COMMON_NOT_UPDATE.customValidName(baseResponse.getMessage(),!baseResponse.isSuccess());
}