Commit 64a6be3a authored by 陈宏杰's avatar 陈宏杰

借款id记录

parent 0a5a7adb
...@@ -780,7 +780,9 @@ public class BaiHangFileReportService { ...@@ -780,7 +780,9 @@ public class BaiHangFileReportService {
}); });
log.info("量化派助贷TO百行报送(D2)批量插入结束, startTime: {} , endTime: {} , 大小: {} , 耗时: {} ", startTime, endTime, recordList.size(), (saveStopwatch.stop().elapsed(TimeUnit.MILLISECONDS) / 1000) + ".s"); log.info("量化派助贷TO百行报送(D2)批量插入结束, startTime: {} , endTime: {} , 大小: {} , 耗时: {} ", startTime, endTime, recordList.size(), (saveStopwatch.stop().elapsed(TimeUnit.MILLISECONDS) / 1000) + ".s");
} catch (Exception e) { } catch (Exception e) {
log.error("量化派助贷TO百行报送(D2)保存异常", e); String loanIds = recordList.stream().map(record -> record.getLoanId()).collect(Collectors.joining(","));
log.error("(D2)保存异常,loanIds={}",loanIds);
log.error("量化派助贷TO百行报送(D2)保存异常", e.getMessage());
} finally { } finally {
clear(recordList,allList); clear(recordList,allList);
} }
......
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