Browse Source

Fix argument expansion in `RepositoryFactorySupport` logging.

Closes #2502
pull/2623/head
Mark Paluch 4 years ago
parent
commit
088ccc4df3
No known key found for this signature in database
GPG Key ID: 4406B84C1661DCD1
  1. 3
      src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java

3
src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java

@ -372,7 +372,8 @@ public abstract class RepositoryFactorySupport implements BeanClassLoaderAware, @@ -372,7 +372,8 @@ public abstract class RepositoryFactorySupport implements BeanClassLoaderAware,
repositoryInit.end();
if (logger.isDebugEnabled()) {
logger.debug(LogMessage.format("Finished creation of repository instance for {}.",
logger
.debug(LogMessage.format("Finished creation of repository instance for %s.",
repositoryInterface.getName()));
}

Loading…
Cancel
Save