deason пре 2 година
родитељ
комит
69126b2459

+ 3 - 0
src/main/java/cn/com/qmth/examcloud/tool/service/export_student_answer_and_score_detail/ExportStudentAnswerAndScoreDetailTask.java

@@ -76,9 +76,12 @@ public class ExportStudentAnswerAndScoreDetailTask {
         }
         log.info("examId:{}, 待处理的课程数为:{}", examId, todoCourses.size());
 
+        int index = 0;
         for (CourseVO course : todoCourses) {
             // 按考试课程逐个处理
             this.export(examId, course, needSubjective, user, tempDir);
+
+            log.info("examId:{} courseId:{} 已处理课程数:{}", examId, course.getCourseId(), ++index);
         }
     }