From 19e6f668d2af9374623eaa196924adda264c9a97 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 17 Oct 2013 17:25:14 -0700 Subject: [PATCH] add debug to test hole punching --- libraries/shared/src/NodeList.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/shared/src/NodeList.cpp b/libraries/shared/src/NodeList.cpp index d0520e00ba..606e390f9d 100644 --- a/libraries/shared/src/NodeList.cpp +++ b/libraries/shared/src/NodeList.cpp @@ -680,6 +680,7 @@ void NodeList::possiblyPingInactiveNodes() { for(NodeList::iterator node = begin(); node != end(); node++) { if (!node->getActiveSocket()) { + qDebug() << "Attempting to ping node" << *node << "\n"; // we don't have an active link to this node, ping it to set that up pingPublicAndLocalSocketsForInactiveNode(&(*node)); }