Skip to content

Commit b307bd3

Browse files
committed
Remove Logger variable from interface ReactiveGlobalTemporaryTableStrategy
1 parent 13eb1bc commit b307bd3

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

hibernate-reactive-core/src/main/java/org/hibernate/reactive/query/sqm/mutation/internal/temptable/ReactiveGlobalTemporaryTableStrategy.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727

2828
public interface ReactiveGlobalTemporaryTableStrategy {
2929

30-
Log LOG = make( Log.class, lookup() );
31-
3230
static String sessionIdentifier(SharedSessionContractImplementor session) {
3331
return session.getSessionIdentifier().toString();
3432
}
@@ -62,7 +60,7 @@ default void prepare(MappingModelCreationProcess mappingModelCreationProcess, Jd
6260
tableCreatedStage.complete( null );
6361
}
6462

65-
LOG.debugf( "Creating global-temp ID table : %s", getTemporaryTable().getTableExpression() );
63+
make( Log.class, lookup() ).debugf( "Creating global-temp ID table : %s", getTemporaryTable().getTableExpression() );
6664

6765
connectionStage()
6866
.thenCompose( this::createTable )
@@ -99,7 +97,7 @@ private CompletionStage<Void> releaseConnection(ReactiveConnection connection) {
9997

10098
private static void logConnectionClosedError(Throwable t) {
10199
if ( t != null ) {
102-
LOG.debugf( "Ignoring error closing the connection: %s", t.getMessage() );
100+
make( Log.class, lookup() ).debugf( "Ignoring error closing the connection: %s", t.getMessage() );
103101
}
104102
}
105103

@@ -147,7 +145,8 @@ default void release(
147145
setDropIdTables( false );
148146

149147
final TemporaryTable temporaryTable = getTemporaryTable();
150-
LOG.debugf( "Dropping global-tempk ID table : %s", temporaryTable.getTableExpression() );
148+
make( Log.class, lookup() )
149+
.debugf( "Dropping global-temp ID table : %s", temporaryTable.getTableExpression() );
151150

152151
connectionStage()
153152
.thenCompose( this::dropTable )

hibernate-reactive-core/src/main/java/org/hibernate/reactive/query/sqm/mutation/spi/ReactiveSqmMultiTableInsertStrategy.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,17 @@
1313
import org.hibernate.query.sqm.mutation.spi.SqmMultiTableInsertStrategy;
1414
import org.hibernate.query.sqm.tree.insert.SqmInsertStatement;
1515
import org.hibernate.reactive.logging.impl.Log;
16-
import org.hibernate.reactive.logging.impl.LoggerFactory;
1716

18-
public interface ReactiveSqmMultiTableInsertStrategy extends SqmMultiTableInsertStrategy {
17+
import static org.hibernate.reactive.logging.impl.LoggerFactory.make;
1918

20-
Log LOG = LoggerFactory.make( Log.class, MethodHandles.lookup() );
19+
public interface ReactiveSqmMultiTableInsertStrategy extends SqmMultiTableInsertStrategy {
2120

2221
@Override
2322
default int executeInsert(
2423
SqmInsertStatement<?> sqmInsertStatement,
2524
DomainParameterXref domainParameterXref,
2625
DomainQueryExecutionContext context) {
27-
throw LOG.nonReactiveMethodCall( "reactiveExecuteInsert" );
26+
throw make( Log.class, MethodHandles.lookup() ).nonReactiveMethodCall( "reactiveExecuteInsert" );
2827
}
2928

3029
CompletionStage<Integer> reactiveExecuteInsert(

0 commit comments

Comments
 (0)