Skip to content

Commit 5a95156

Browse files
committed
Fixed class name in debug log message
1 parent 71fc2ba commit 5a95156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-context/src/main/java/org/springframework/context/annotation/ConfigurationClassUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public static boolean isLiteConfigurationCandidate(AnnotationMetadata metadata)
163163
}
164164
catch (Throwable ex) {
165165
if (logger.isDebugEnabled()) {
166-
logger.debug("Failed to introspect @Bean methods on class [" + metadata.getClass() + "]: " + ex);
166+
logger.debug("Failed to introspect @Bean methods on class [" + metadata.getClassName() + "]: " + ex);
167167
}
168168
return false;
169169
}

0 commit comments

Comments
 (0)