From 52860908128fe0052a18981ace38b2ec06da2a46 Mon Sep 17 00:00:00 2001 From: wangyix Date: Fri, 6 Jun 2014 17:52:48 -0700 Subject: [PATCH] removed interface print statements --- interface/src/Application.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index a28343eb96..87e82b21a2 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -2147,15 +2147,15 @@ void Application::sendNack() { dataAt += sizeof(uint16_t); // pack sequence numbers -printf("\n\t sending nack...\n"); -printf("\t\t packed %d seq #s:", numSequenceNumbers); +//printf("\n\t sending nack...\n"); +//printf("\t\t packed %d seq #s:", numSequenceNumbers); for (int i = 0; i < numSequenceNumbers; i++) { OCTREE_PACKET_SEQUENCE* sequenceNumberAt = (OCTREE_PACKET_SEQUENCE*)dataAt; *sequenceNumberAt = stats.getNextSequenceNumberToNack(); dataAt += sizeof(OCTREE_PACKET_SEQUENCE); -printf(" %d,", *sequenceNumberAt); +//printf(" %d,", *sequenceNumberAt); } -printf("\n"); +//printf("\n"); //_octreeSceneStatsLock.unlock();