Separate log entries for imported entities by a blank line

deploy_packages_to_gitea
Jens Pelzetter 2023-01-28 11:41:13 +01:00
parent 2c7c9e302c
commit 2b69afa469
1 changed files with 2 additions and 0 deletions

View File

@ -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);