Skip to content

Commit 32d62e3

Browse files
committed
Add logger to test utils class
1 parent 92167d5 commit 32d62e3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/java/com/rabbitmq/client/test/TestUtils.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2007-2021 VMware, Inc. or its affiliates. All rights reserved.
1+
// Copyright (c) 2007-2022 VMware, Inc. or its affiliates. All rights reserved.
22
//
33
// This software, the RabbitMQ Java client library, is triple-licensed under the
44
// Mozilla Public License 2.0 ("MPL"), the GNU General Public License version 2
@@ -29,6 +29,7 @@
2929
import org.junit.rules.TestRule;
3030
import org.junit.runner.Description;
3131
import org.junit.runners.model.Statement;
32+
import org.slf4j.Logger;
3233
import org.slf4j.LoggerFactory;
3334

3435
import java.io.IOException;
@@ -45,6 +46,8 @@
4546

4647
public class TestUtils {
4748

49+
private static final Logger LOGGER = LoggerFactory.getLogger(TestUtils.class);
50+
4851
public static final boolean USE_NIO = System.getProperty("use.nio") != null;
4952

5053
public static ConnectionFactory connectionFactory() {

0 commit comments

Comments
 (0)