Fixed class name in debug log message

This commit is contained in:
Juergen Hoeller
2015-11-14 23:58:27 +01:00
parent 71fc2ba174
commit 5a95156dcc

View File

@@ -163,7 +163,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;
}