From 25728196a948dec3f2090cda1cb5f80ad8469275 Mon Sep 17 00:00:00 2001
From: Florian Fittkau <ffi@informatik.uni-kiel.de>
Date: Thu, 13 Feb 2014 23:08:43 +0100
Subject: [PATCH] removed debug outputs

---
 .../live_trace_processing/reader/TCPReaderOneClient.java | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/src/explorviz/live_trace_processing/reader/TCPReaderOneClient.java b/src/explorviz/live_trace_processing/reader/TCPReaderOneClient.java
index 3fe9a59..6b45af9 100644
--- a/src/explorviz/live_trace_processing/reader/TCPReaderOneClient.java
+++ b/src/explorviz/live_trace_processing/reader/TCPReaderOneClient.java
@@ -405,10 +405,6 @@ public class TCPReaderOneClient extends Thread implements IPeriodicTimeSignalRec
 		final long traceId = buffer.getLong();
 		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,
 				traceId, orderIndex, hostApplicationMetadata));
 	}
@@ -463,11 +459,6 @@ public class TCPReaderOneClient extends Thread implements IPeriodicTimeSignalRec
 		final int destinationId = buffer.getInt();
 
 		try {
-			System.out.println("worker: sent remote: "
-					+ new SentRemoteCallRecord(timestamp, stringRegistry
-							.getStringFromId(destinationId), traceId, orderIndex,
-							hostApplicationMetadata).toString());
-
 			putInRingBuffer(new SentRemoteCallRecord(timestamp,
 					stringRegistry.getStringFromId(destinationId), traceId, orderIndex,
 					hostApplicationMetadata));
-- 
GitLab