Separate log entries for imported entities by a blank line
parent
2c7c9e302c
commit
2b69afa469
|
|
@ -177,11 +177,13 @@ public abstract class AbstractEntityImExporter<T extends Exportable> {
|
||||||
existingEntity.getUuid(),
|
existingEntity.getUuid(),
|
||||||
existingEntity.toString()
|
existingEntity.toString()
|
||||||
);
|
);
|
||||||
|
LOGGER.info(" ");
|
||||||
} else {
|
} else {
|
||||||
saveImportedEntity(importedEntity);
|
saveImportedEntity(importedEntity);
|
||||||
|
|
||||||
entityManager.flush();
|
entityManager.flush();
|
||||||
LOGGER.info("Imported entity {}", importedEntity.toString());
|
LOGGER.info("Imported entity {}", importedEntity.toString());
|
||||||
|
LOGGER.info(" ");
|
||||||
}
|
}
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
throw new ImportExpection(ex);
|
throw new ImportExpection(ex);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue