This is an automated email from the ASF dual-hosted git repository. robbie pushed a commit to branch new-logging in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
commit 16536ddc912424e046b68c856a3849fcd2fbbd40 Author: Robbie Gemmell <[email protected]> AuthorDate: Fri Aug 19 11:52:22 2022 +0100 switch another logger missed previously --- .../apache/activemq/artemis/tests/soak/client/ClientAbstract.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/client/ClientAbstract.java b/tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/client/ClientAbstract.java index 5572cf2fc9..08bfd002ee 100644 --- a/tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/client/ClientAbstract.java +++ b/tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/client/ClientAbstract.java @@ -23,7 +23,8 @@ import org.apache.activemq.artemis.api.core.client.ClientSession; import org.apache.activemq.artemis.api.core.client.ClientSessionFactory; import org.apache.activemq.artemis.core.transaction.impl.XidImpl; import org.apache.activemq.artemis.utils.UUIDGenerator; -import org.jboss.logging.Logger; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * WARNING: This is not a sample on how you should handle XA. You are supposed to use a @@ -36,7 +37,7 @@ import org.jboss.logging.Logger; */ public abstract class ClientAbstract extends Thread { - private static final Logger log = Logger.getLogger(ClientAbstract.class); + private static final Logger log = LoggerFactory.getLogger(ClientAbstract.class); protected ClientSession session;
