refactor: 同步缺陷失败记录详细的错误信息

This commit is contained in:
Captain.B 2021-06-30 17:24:10 +08:00 committed by 刘瑞斌
parent e6386492ae
commit 26e0f4e121
1 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@ import io.metersphere.base.domain.TestPlanTestCaseWithBLOBs;
import io.metersphere.commons.utils.LogUtil;
import io.metersphere.track.service.IssuesService;
import io.metersphere.track.service.TestPlanTestCaseService;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
@ -24,7 +25,7 @@ public class IssuesJob {
@QuartzScheduled(fixedDelay = 3600 * 1000)
//@Scheduled(fixedDelay = 120 * 1000)
public void IssuesCount() {
public void issuesCount() {
int pageSize = 100;
int pages = 1;
for (int i = 0; i < pages; i++) {
@ -37,7 +38,7 @@ public class IssuesJob {
int issuesCount = issues.size();
testPlanTestCaseService.updateIssues(issuesCount, l.getPlanId(), l.getCaseId(), JSON.toJSONString(issues));
} catch (Exception e) {
LogUtil.error("定时任务处理bug数量报错planId: " + l.getPlanId(), e);
LogUtil.error("定时任务处理bug数量报错planId: " + l.getPlanId(), ExceptionUtils.getStackTrace(e));
}
});
}