From deac223b1bc1bf623de4f66fe7ab3bff671645d8 Mon Sep 17 00:00:00 2001 From: Petr Beran Date: Thu, 22 Feb 2024 09:49:46 +0100 Subject: [PATCH] [WFTC-142] Lower logging level to debug for transaction timeout --- .../java/org/wildfly/transaction/client/_private/Log.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/wildfly/transaction/client/_private/Log.java b/src/main/java/org/wildfly/transaction/client/_private/Log.java index bc457f8..83b6387 100644 --- a/src/main/java/org/wildfly/transaction/client/_private/Log.java +++ b/src/main/java/org/wildfly/transaction/client/_private/Log.java @@ -74,6 +74,10 @@ public interface Log extends BasicLogger { @Message(value = "Closing the recovery stream after recovery failed threw an exception") void recoverySuppressedException(@Cause XAException e); + @LogMessage(level = Logger.Level.DEBUG) + @Message(value = "Failed to set transaction timeout of %d") + void setTimeoutUnsuccessful(int timeout); + // Trace @LogMessage(level = Logger.Level.TRACE)