Fix argument expansion in RepositoryFactorySupport logging.

Closes #2502
This commit is contained in:
Mark Paluch
2021-12-07 09:32:51 +01:00
parent 0a42cdf585
commit 5589f5670a

View File

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