diff --git a/framework-platform/framework-platform.gradle b/framework-platform/framework-platform.gradle index fc172371ef0..650f9c0711e 100644 --- a/framework-platform/framework-platform.gradle +++ b/framework-platform/framework-platform.gradle @@ -13,7 +13,7 @@ dependencies { api(platform("io.netty:netty5-bom:5.0.0.Alpha5")) api(platform("io.projectreactor:reactor-bom:2022.0.8")) api(platform("io.rsocket:rsocket-bom:1.1.3")) - api(platform("org.apache.groovy:groovy-bom:4.0.12")) + api(platform("org.apache.groovy:groovy-bom:4.0.13")) api(platform("org.apache.logging.log4j:log4j-bom:2.20.0")) api(platform("org.eclipse.jetty:jetty-bom:11.0.15")) api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.1")) diff --git a/spring-tx/src/main/java/org/springframework/transaction/reactive/TransactionSynchronizationUtils.java b/spring-tx/src/main/java/org/springframework/transaction/reactive/TransactionSynchronizationUtils.java index 7eaa43a0c7b..192580a64c5 100644 --- a/spring-tx/src/main/java/org/springframework/transaction/reactive/TransactionSynchronizationUtils.java +++ b/spring-tx/src/main/java/org/springframework/transaction/reactive/TransactionSynchronizationUtils.java @@ -85,7 +85,7 @@ abstract class TransactionSynchronizationUtils { public static Mono triggerBeforeCompletion(Collection synchronizations) { return Flux.fromIterable(synchronizations) .concatMap(TransactionSynchronization::beforeCompletion).onErrorContinue((t, o) -> - logger.debug("TransactionSynchronization.beforeCompletion threw exception", t)).then(); + logger.error("TransactionSynchronization.beforeCompletion threw exception", t)).then(); } /** @@ -115,7 +115,7 @@ abstract class TransactionSynchronizationUtils { Collection synchronizations, int completionStatus) { return Flux.fromIterable(synchronizations).concatMap(it -> it.afterCompletion(completionStatus)) - .onErrorContinue((t, o) -> logger.debug("TransactionSynchronization.afterCompletion threw exception", t)).then(); + .onErrorContinue((t, o) -> logger.error("TransactionSynchronization.afterCompletion threw exception", t)).then(); }