From 76109d5fcbb856ec74722d1708ed7bbcbbd63196 Mon Sep 17 00:00:00 2001 From: Martin Ledvinka Date: Fri, 29 Nov 2024 17:50:30 +0100 Subject: [PATCH] [kbss-cvut/termit-ui#581] Add a bit of logging to ExcelImporter. --- .../cvut/kbss/termit/service/importer/excel/ExcelImporter.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/cz/cvut/kbss/termit/service/importer/excel/ExcelImporter.java b/src/main/java/cz/cvut/kbss/termit/service/importer/excel/ExcelImporter.java index f55e2ef7..f588798d 100644 --- a/src/main/java/cz/cvut/kbss/termit/service/importer/excel/ExcelImporter.java +++ b/src/main/java/cz/cvut/kbss/termit/service/importer/excel/ExcelImporter.java @@ -102,6 +102,7 @@ public Vocabulary importVocabulary(@Nonnull ImportConfiguration config, @Nonnull } final Vocabulary targetVocabulary = vocabularyDao.find(config.vocabularyIri()).orElseThrow( () -> NotFoundException.create(Vocabulary.class, config.vocabularyIri())); + LOG.debug("Importing terms from Excel into vocabulary {}.", targetVocabulary); try { List terms = Collections.emptyList(); Set rawDataToInsert = new HashSet<>();