mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-23 14:40:00 +00:00
Log correct class name for introspection failure
Issue: SPR-13091
This commit is contained in:
+1
-1
@@ -175,7 +175,7 @@ abstract class ConfigurationClassUtils {
|
||||
}
|
||||
catch (Throwable ex) {
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug("Failed to introspect @Bean methods on class [" + metadata.getClass() + "]: " + ex);
|
||||
logger.debug("Failed to introspect @Bean methods on class [" + metadata.getClassName() + "]: " + ex);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user