Skip to content

Commit

Permalink
Fix a log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
khituras committed Sep 20, 2024
1 parent 58374e0 commit 6c59ec1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ public Future<IdConversionResult> convert(Stream<String> stream, IdType to) {
return CompletableFuture.supplyAsync(() -> {
long time = System.currentTimeMillis();
final Multimap<IdType, String> idsByType = determineIdTypes(stream);
log.debug("Starting to convert {} input IDs for GePI retrieval.");
log.debug("Starting to convert {} input IDs for GePI retrieval.", idsByType.values().size());
final List<Future<IdConversionResult>> convertedIds = new ArrayList<>();
for (IdType from : idsByType.keySet()) {
final Collection<String> sourceIds = idsByType.get(from);
Expand Down

0 comments on commit 6c59ec1

Please sign in to comment.