Skip to content

Commit

Permalink
Fix log message formatting in CandidateComponentsIndexLoader
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Nov 5, 2021
1 parent 1b4438c commit ff1485f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -107,7 +107,7 @@ private static CandidateComponentsIndex doLoadIndex(ClassLoader classLoader) {
result.add(properties);
}
if (logger.isDebugEnabled()) {
logger.debug("Loaded " + result.size() + "] index(es)");
logger.debug("Loaded " + result.size() + " index(es)");
}
int totalCount = result.stream().mapToInt(Properties::size).sum();
return (totalCount > 0 ? new CandidateComponentsIndex(result) : null);
Expand Down

0 comments on commit ff1485f

Please sign in to comment.