in src/main/java/com/epam/digital/data/platform/user/service/UserPublishingService.java [209:218]
private void printStatistics(Statistics statistics) {
log.info("The file has been processed. Total users in file: {}. Successfully imported: {}. "
+ "Skipped: {}. Failed to import: {}",
statistics.getTotalNumberOfUsers(), statistics.getImportedUsers(),
statistics.getSkippedUsers(), statistics.getNotImportedUsers());
if(!statistics.getCollapsedKatottg().isEmpty()) {
log.info("KATOTTG codes which are already included in the higher levels of code were "
+ "detected and removed in the following rows: {}", statistics.getCollapsedKatottg());
}
}