Skip to content
Snippets Groups Projects
Commit 25728196 authored by Florian Fittkau's avatar Florian Fittkau
Browse files

removed debug outputs

parent 8e41a2ff
Branches
Tags
No related merge requests found
...@@ -405,10 +405,6 @@ public class TCPReaderOneClient extends Thread implements IPeriodicTimeSignalRec ...@@ -405,10 +405,6 @@ public class TCPReaderOneClient extends Thread implements IPeriodicTimeSignalRec
final long traceId = buffer.getLong(); final long traceId = buffer.getLong();
final int orderIndex = buffer.getInt(); final int orderIndex = buffer.getInt();
System.out.println("worker: received remote "
+ new ReceivedRemoteCallRecord(timestamp, callerTraceId, callerOrderIndex, traceId,
orderIndex, hostApplicationMetadata).toString());
putInRingBuffer(new ReceivedRemoteCallRecord(timestamp, callerTraceId, callerOrderIndex, putInRingBuffer(new ReceivedRemoteCallRecord(timestamp, callerTraceId, callerOrderIndex,
traceId, orderIndex, hostApplicationMetadata)); traceId, orderIndex, hostApplicationMetadata));
} }
...@@ -463,11 +459,6 @@ public class TCPReaderOneClient extends Thread implements IPeriodicTimeSignalRec ...@@ -463,11 +459,6 @@ public class TCPReaderOneClient extends Thread implements IPeriodicTimeSignalRec
final int destinationId = buffer.getInt(); final int destinationId = buffer.getInt();
try { try {
System.out.println("worker: sent remote: "
+ new SentRemoteCallRecord(timestamp, stringRegistry
.getStringFromId(destinationId), traceId, orderIndex,
hostApplicationMetadata).toString());
putInRingBuffer(new SentRemoteCallRecord(timestamp, putInRingBuffer(new SentRemoteCallRecord(timestamp,
stringRegistry.getStringFromId(destinationId), traceId, orderIndex, stringRegistry.getStringFromId(destinationId), traceId, orderIndex,
hostApplicationMetadata)); hostApplicationMetadata));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment