File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
hibernate-reactive-core/src/main/java/org/hibernate/reactive/provider/impl Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ version = projectVersion
5353// ./gradlew clean build -PhibernateOrmVersion=5.6.15-SNAPSHOT
5454ext {
5555 if ( ! project. hasProperty(' hibernateOrmVersion' ) ) {
56- hibernateOrmVersion = ' 6.2.0 .Final'
56+ hibernateOrmVersion = ' 6.2.1 .Final'
5757 }
5858 if ( ! project. hasProperty( ' hibernateOrmGradlePluginVersion' ) ) {
5959 // Same as ORM as default
Original file line number Diff line number Diff line change 1919import org .hibernate .engine .jdbc .dialect .internal .DialectFactoryInitiator ;
2020import org .hibernate .engine .jdbc .dialect .internal .DialectResolverInitiator ;
2121import org .hibernate .engine .jdbc .internal .JdbcServicesInitiator ;
22+ import org .hibernate .engine .jdbc .internal .SqlStatementLoggerInitiator ;
2223import org .hibernate .engine .jndi .internal .JndiServiceInitiator ;
2324import org .hibernate .event .internal .EntityCopyObserverFactoryInitiator ;
2425import org .hibernate .persister .internal .PersisterFactoryInitiator ;
@@ -157,6 +158,9 @@ private static List<StandardServiceInitiator<?>> buildInitialServiceInitiatorLis
157158 // Custom for Hibernate Reactive: NativeParametersHandling
158159 serviceInitiators .add ( NativeParametersHandling .INSTANCE );
159160
161+ // [standard] SqlStatementLogger
162+ serviceInitiators .add ( SqlStatementLoggerInitiator .INSTANCE );
163+
160164 // --- end of services defined by Hibernate ORM
161165
162166 // --- custom ones follow:
You can’t perform that action at this time.
0 commit comments