From e338c600c33d13e982a7e55bfad73c7a088cad3f Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 4 Sep 2014 09:29:29 -0700 Subject: [PATCH] add debug to show that domain connection is being attempted --- libraries/networking/src/NodeList.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libraries/networking/src/NodeList.cpp b/libraries/networking/src/NodeList.cpp index 8e32a2f0c2..d77ef321a8 100644 --- a/libraries/networking/src/NodeList.cpp +++ b/libraries/networking/src/NodeList.cpp @@ -343,6 +343,10 @@ void NodeList::sendDomainServerCheckIn() { PacketType domainPacketType = !_domainHandler.isConnected() ? PacketTypeDomainConnectRequest : PacketTypeDomainListRequest; + if (!_domainHandler.isConnected()) { + qDebug() << "Sending connect request to domain-server at" << _domainHandler.getHostname(); + } + // construct the DS check in packet QUuid packetUUID = _sessionUUID;