From 56869a769ded54ed3e3300649762fe15d06b36f0 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 25 Mar 2014 14:53:32 -0700 Subject: [PATCH] remove some extraneous domain-server check in debugging --- libraries/shared/src/NodeList.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libraries/shared/src/NodeList.cpp b/libraries/shared/src/NodeList.cpp index e6f542a358..b2a494aa32 100644 --- a/libraries/shared/src/NodeList.cpp +++ b/libraries/shared/src/NodeList.cpp @@ -582,12 +582,7 @@ void NodeList::sendDomainServerCheckIn() { packetStream << nodeTypeOfInterest; } - qDebug() << "sending DS check in size" << domainServerPacket.size() << "to" << _domainInfo.getSockAddr(); - qint64 code = writeDatagram(domainServerPacket, _domainInfo.getSockAddr(), _domainInfo.getConnectionSecret()); - qDebug() << "Code returned is" << code; - if (code == -1) { - qDebug() << "the socket error is" << _nodeSocket.errorString(); - } + writeDatagram(domainServerPacket, _domainInfo.getSockAddr(), _domainInfo.getConnectionSecret()); const int NUM_DOMAIN_SERVER_CHECKINS_PER_STUN_REQUEST = 5; static unsigned int numDomainCheckins = 0;