remove debug output

This commit is contained in:
2016-12-23 19:28:11 +01:00
parent 580733d267
commit c5f0e8514c
3 changed files with 2 additions and 5 deletions

View File

@@ -72,11 +72,11 @@ public class TcpIngestor implements AutoCloseable {
System.out.println("reading from stream");
while (iterator.hasNext()) {
final long start = System.nanoTime();
// System.out.println("read: " + line);
@SuppressWarnings("unchecked")
final Map<String, Object> object = (Map<String, Object>) iterator.next();
final long start = System.nanoTime();
final Optional<Entry> entry = createEntry(object);
final long end = System.nanoTime();
duration += (end - start) / 1_000_000.0;