Skip to content

Commit afb649c

Browse files
author
Steve Powell
committed
Added missing constructor.
1 parent f8f5d34 commit afb649c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/rabbitmq/tools/Tracer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ private Tracer(int listenPort, String id, String host, int port,
151151
// this(listenPort, createId(listenPort), host, port, new AsyncLogger(System.out), new BlockingCell<Exception>(), System.getProperties());
152152
// }
153153

154-
public Tracer(int listenPort, String id, String host, int port, Properties props) throws IOException {
155-
this(listenPort, id, host, port, new AsyncLogger(System.out), new BlockingCell<Exception>(), props);
154+
public Tracer(int listenPort, String id, String host, int port, Logger logger, Properties props) throws IOException {
155+
this(listenPort, id, host, port, logger, new BlockingCell<Exception>(), props);
156156
}
157157

158158
public Tracer(String id) throws IOException {

0 commit comments

Comments
 (0)