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 adc649c8cd63b22bbe6d7e168c5cf0009b5ce34a
Author: Robbie Gemmell <[email protected]>
AuthorDate: Fri Sep 9 16:36:34 2022 +0100

    replace jbl reference with slf4j
---
 docs/hacking-guide/en/tests.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/hacking-guide/en/tests.md b/docs/hacking-guide/en/tests.md
index 9ee10869d8..c4e734653b 100644
--- a/docs/hacking-guide/en/tests.md
+++ b/docs/hacking-guide/en/tests.md
@@ -63,7 +63,7 @@ On your classes, import the following:
 
 ```java
 public class MyTest {
-     private static final org.jboss.logging.Logger log = 
org.jboss.logging.Logger.getLogger($CLASS_NAME$.class);
+     private static final org.slf4j.Logger log = 
org.slf4j.LoggerFactory.getLogger($CLASS_NAME$.class);
     
      @Test
      public void test() {

Reply via email to