Fix log message formatting in CandidateComponentsIndexLoader
This commit is contained in:
@@ -107,7 +107,7 @@ public final class CandidateComponentsIndexLoader {
|
|||||||
result.add(properties);
|
result.add(properties);
|
||||||
}
|
}
|
||||||
if (logger.isDebugEnabled()) {
|
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();
|
int totalCount = result.stream().mapToInt(Properties::size).sum();
|
||||||
return (totalCount > 0 ? new CandidateComponentsIndex(result) : null);
|
return (totalCount > 0 ? new CandidateComponentsIndex(result) : null);
|
||||||
|
|||||||
Reference in New Issue
Block a user