HHH-13931 MissingFormatArgumentException in JpaCompliantLifecycleStrategy.BeanImpl

This commit is contained in:
Xavier Dury 2020-04-06 09:17:34 +02:00 committed by Andrea Boriero
parent 5952c0abc3
commit 007f609210
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ public class JpaCompliantLifecycleStrategy implements BeanLifecycleStrategy {
throw e; throw e;
} }
catch (Exception e) { catch (Exception e) {
log.debugf( "Error resolving CDI bean [%s] - using fallback" ); log.debugf( "Error resolving CDI bean [%s] - using fallback", beanType );
this.beanInstance = fallbackProducer.produceBeanInstance( beanType ); this.beanInstance = fallbackProducer.produceBeanInstance( beanType );
try { try {