mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-14 11:46:34 +02:00
remove extraneous logging for Domain server solo agents
This commit is contained in:
parent
d211eb6c84
commit
b6d255477b
1 changed files with 0 additions and 2 deletions
|
@ -89,7 +89,6 @@ int main(int argc, const char * argv[])
|
|||
// this is an agent of which there can be multiple, just add them to the packet
|
||||
currentBufferPos = addAgentToBroadcastPacket(currentBufferPos, &(*agent));
|
||||
} else {
|
||||
std::cout << "We have a solo agent: " << &(*agent) << "\n";
|
||||
// solo agent, we need to only send newest
|
||||
if (newestSoloAgents[agent->getType()] == NULL ||
|
||||
newestSoloAgents[agent->getType()]->getFirstRecvTimeUsecs() < agent->getFirstRecvTimeUsecs()) {
|
||||
|
@ -106,7 +105,6 @@ int main(int argc, const char * argv[])
|
|||
for (std::map<char, Agent *>::iterator agentIterator = newestSoloAgents.begin();
|
||||
agentIterator != newestSoloAgents.end();
|
||||
agentIterator++) {
|
||||
std::cout << "Newest agent: " << agentIterator->second << "\n";
|
||||
// this is the newest alive solo agent, add them to the packet
|
||||
currentBufferPos = addAgentToBroadcastPacket(currentBufferPos, agentIterator->second);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue