From 5589f5670a52c297a189db2d19474aa029afce04 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Tue, 7 Dec 2021 09:32:51 +0100 Subject: [PATCH] Fix argument expansion in `RepositoryFactorySupport` logging. Closes #2502 --- .../data/repository/core/support/RepositoryFactorySupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java b/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java index 4920ae0eb..2ced3959c 100644 --- a/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java +++ b/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java @@ -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;