Skip to content

Commit ff1485f

Browse files
committed
Fix log message formatting in CandidateComponentsIndexLoader
1 parent 1b4438c commit ff1485f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-context/src/main/java/org/springframework/context/index/CandidateComponentsIndexLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ private static CandidateComponentsIndex doLoadIndex(ClassLoader classLoader) {
107107
result.add(properties);
108108
}
109109
if (logger.isDebugEnabled()) {
110-
logger.debug("Loaded " + result.size() + "] index(es)");
110+
logger.debug("Loaded " + result.size() + " index(es)");
111111
}
112112
int totalCount = result.stream().mapToInt(Properties::size).sum();
113113
return (totalCount > 0 ? new CandidateComponentsIndex(result) : null);

0 commit comments

Comments
 (0)