File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 5555public class Tracer implements Runnable {
5656 private static boolean property (String property ){
5757 return Boolean .parseBoolean (System .getProperty (
58- "com.rabbitmq.tools.Tracer." + property ));
58+ "com.rabbitmq.tools.Tracer." + property ));
5959 }
6060
6161 public static final boolean WITHHOLD_INBOUND_HEARTBEATS =
@@ -212,7 +212,7 @@ public void run() {
212212 }
213213
214214 public void log (String message ){
215- logger .log ("" + System .currentTimeMillis () + ": conn#"
215+ logger .log ("" + System .currentTimeMillis () + ": conn#"
216216 + id + " " + message );
217217 }
218218
@@ -243,8 +243,8 @@ public Frame readFrame() throws IOException {
243243 }
244244
245245 public void report (int channel , Object object ) {
246- Tracer .this .log ("ch#" + channel
247- + (inBound ? " -> " : " <- " )
246+ Tracer .this .log ("ch#" + channel
247+ + (inBound ? " -> " : " <- " )
248248 + object );
249249 }
250250
@@ -307,7 +307,7 @@ public void doFrame() throws IOException {
307307 AMQCommand cmd = c .handleFrame (f );
308308 if (cmd != null ) {
309309 report (f .channel , cmd .toString (SUPPRESS_COMMAND_BODIES ));
310- assemblers .remove (f .channel );
310+ assemblers .remove (f .channel );
311311 }
312312 }
313313 }
You can’t perform that action at this time.
0 commit comments