Skip to content

Commit

Permalink
Increase log level to error
Browse files Browse the repository at this point in the history
  • Loading branch information
KSH-code authored and jhoeller committed Jun 30, 2023
1 parent 50074f0 commit 3f65b85
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -108,7 +108,7 @@ public static void triggerBeforeCompletion() {
synchronization.beforeCompletion();
}
catch (Throwable ex) {
logger.debug("TransactionSynchronization.beforeCompletion threw exception", ex);
logger.error("TransactionSynchronization.beforeCompletion threw exception", ex);
}
}
}
Expand Down Expand Up @@ -172,7 +172,7 @@ public static void invokeAfterCompletion(@Nullable List<TransactionSynchronizati
synchronization.afterCompletion(completionStatus);
}
catch (Throwable ex) {
logger.debug("TransactionSynchronization.afterCompletion threw exception", ex);
logger.error("TransactionSynchronization.afterCompletion threw exception", ex);
}
}
}
Expand Down

0 comments on commit 3f65b85

Please sign in to comment.