Commit b307f72c authored by 陈宏杰's avatar 陈宏杰

打印插入时间

parent 0f8a765a
......@@ -349,7 +349,9 @@ public class BaiHangFileReportService {
}
}
try {
Stopwatch saveStopwatch = Stopwatch.createStarted();
repaymentLoanInfoDbMapper.batchSaveRepaymentLoanInfoLog(recordList);
log.info("量化派助贷TO百行报送(D3)-逾期记录批量插入结束, startTime: {} , endTime: {} , 大小: {} , 耗时: {} ", startTime, endTime, recordList.size(), (saveStopwatch.stop().elapsed(TimeUnit.MILLISECONDS) / 1000) + ".s");
} catch (Exception e) {
log.error("量化派助贷TO百行报送(D3)-逾期记录保存异常", e);
}
......@@ -419,7 +421,9 @@ public class BaiHangFileReportService {
}
}
try {
Stopwatch saveStopwatch = Stopwatch.createStarted();
repaymentLoanInfoDbMapper.batchSaveRepaymentLoanInfoLog(recordList);
log.info("量化派助贷TO百行报送(D3)-每30天逾期记录批量插入结束, startTime: {} , endTime: {} , 大小: {} , 耗时: {} ", startTime, endTime, recordList.size(), (saveStopwatch.stop().elapsed(TimeUnit.MILLISECONDS) / 1000) + ".s");
} catch (Exception e) {
log.error("量化派助贷TO百行报送(D3)-每30天逾期记录保存异常", e);
}
......@@ -471,7 +475,9 @@ public class BaiHangFileReportService {
}
}
try {
Stopwatch saveStopwatch = Stopwatch.createStarted();
repaymentLoanInfoDbMapper.batchSaveRepaymentLoanInfoLog(recordList);
log.info("量化派助贷TO百行报送(D3)-还款记录批量插入结束, startTime: {} , endTime: {} , 大小: {} , 耗时: {} ", startTime, endTime, recordList.size(), (saveStopwatch.stop().elapsed(TimeUnit.MILLISECONDS) / 1000) + ".s");
} catch (Exception e) {
log.error("量化派助贷TO百行报送(D3)-还款记录保存异常", e);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment