From 99c42b4d624421128dc38ffb9287c59482f7d752 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 11 Apr 2013 11:13:55 -0700 Subject: [PATCH] remove extra socket activation debugging --- shared/src/AgentList.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/shared/src/AgentList.cpp b/shared/src/AgentList.cpp index d0a03171fb..b2cc6a3ae2 100644 --- a/shared/src/AgentList.cpp +++ b/shared/src/AgentList.cpp @@ -262,11 +262,9 @@ void AgentList::handlePingReply(sockaddr *agentAddress) { // prioritize the private address so that we prune erroneous local matches if (socketMatch(agent->getPublicSocket(), agentAddress)) { agent->activatePublicSocket(); - std::cout << "Activated public socket for agent " << &*agent << "\n"; break; } else if (socketMatch(agent->getLocalSocket(), agentAddress)) { agent->activateLocalSocket(); - std::cout << "Activated local socket for agent " << &*agent << "\n"; break; } }