Log correct class name for introspection failure

Issue: SPR-13091
This commit is contained in:
Sam Brannen 2015-06-03 21:31:12 -04:00
parent d3b5aeb768
commit d4ee75ddf0
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ abstract class ConfigurationClassUtils {
} }
catch (Throwable ex) { catch (Throwable ex) {
if (logger.isDebugEnabled()) { 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; return false;
} }