|
@@ -177,8 +177,8 @@ public class SyncExamRecordDataJobHandler {
|
|
|
|
|
|
long startTime = System.currentTimeMillis();
|
|
long startTime = System.currentTimeMillis();
|
|
syncExamDataCloudService.syncExamData(syncReq);
|
|
syncExamDataCloudService.syncExamData(syncReq);
|
|
- long cost = (System.currentTimeMillis() - startTime) / 1000;
|
|
|
|
- log.warn("syncExamData ok, examRecordDataId:{}, studentId:{}, examType:{}, cost:{}s",
|
|
|
|
|
|
+ long cost = System.currentTimeMillis() - startTime;
|
|
|
|
+ log.warn("syncExamData ok, examRecordDataId:{}, studentId:{}, examType:{}, cost:{}ms",
|
|
examRecordDataId, examRecordDataCache.getStudentId(), examRecordDataCache.getExamType(), cost);
|
|
examRecordDataId, examRecordDataCache.getStudentId(), examRecordDataCache.getExamType(), cost);
|
|
|
|
|
|
// 同步成功后,更新同步状态
|
|
// 同步成功后,更新同步状态
|