|
@@ -58,6 +58,7 @@ import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 考试作答相关接口(云阅卷定制接口)
|
|
* 考试作答相关接口(云阅卷定制接口)
|
|
|
|
+ *
|
|
* @Author lideyin
|
|
* @Author lideyin
|
|
* @Date 2020/3/30 14:48
|
|
* @Date 2020/3/30 14:48
|
|
* @Version 1.0
|
|
* @Version 1.0
|
|
@@ -295,12 +296,11 @@ public class ExamQuestionOuterServiceProvider extends ControllerSupport implemen
|
|
}
|
|
}
|
|
|
|
|
|
QuestionAnswerCacheBean questionAnswer = CacheHelper.getQuestionAnswer(req.getQuestionId());
|
|
QuestionAnswerCacheBean questionAnswer = CacheHelper.getQuestionAnswer(req.getQuestionId());
|
|
-
|
|
|
|
OuterGetQuestionAnswerResp resp = new OuterGetQuestionAnswerResp();
|
|
OuterGetQuestionAnswerResp resp = new OuterGetQuestionAnswerResp();
|
|
resp.setAnswerList(questionAnswer.getRightAnswers());
|
|
resp.setAnswerList(questionAnswer.getRightAnswers());
|
|
|
|
|
|
- LOGGER.warn("$$$getQuestionAnswer questionId = {}", req.getQuestionId());
|
|
|
|
-
|
|
|
|
|
|
+ // 获取试题信息带答案(敏感信息日志,用于排查调用者)
|
|
|
|
+ LOGGER.warn("$$$getQuestionWithAnswer questionId:{}", req.getQuestionId());
|
|
return resp;
|
|
return resp;
|
|
}
|
|
}
|
|
|
|
|