Fix log message formatting in CandidateComponentsIndexLoader
This commit is contained in:
parent
1b4438caac
commit
ff1485fd8d
|
@ -107,7 +107,7 @@ public final class CandidateComponentsIndexLoader {
|
|||
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);
|
||||
|
|
Loading…
Reference in New Issue