Skip to content

Commit

Permalink
[kbss-cvut/termit-ui#581] Add a bit of logging to ExcelImporter.
Browse files Browse the repository at this point in the history
  • Loading branch information
ledsoft committed Nov 29, 2024
1 parent c26531a commit dbc7796
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<Term> terms = Collections.emptyList();
Set<TermRelationship> rawDataToInsert = new HashSet<>();
Expand Down

0 comments on commit dbc7796

Please sign in to comment.