mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 18:55:01 +02:00
removed debug prints
This commit is contained in:
parent
ac0b037f0f
commit
0601c24b24
2 changed files with 0 additions and 3 deletions
|
@ -367,7 +367,6 @@ void LimitedNodeList::killNodeWithUUID(const QUuid& nodeUUID) {
|
|||
NodeHash::iterator LimitedNodeList::killNodeAtHashIterator(NodeHash::iterator& nodeItemToKill) {
|
||||
qDebug() << "Killed" << *nodeItemToKill.value();
|
||||
emit nodeKilled(nodeItemToKill.value());
|
||||
printf("\t\t\t emitting nodeKilled: %s\n", nodeItemToKill.value()->getUUID().toString().toLatin1().data());
|
||||
return _nodeHash.erase(nodeItemToKill);
|
||||
}
|
||||
|
||||
|
|
|
@ -54,6 +54,4 @@ void ReceivedPacketProcessor::nodeKilled(SharedNodePointer node) {
|
|||
lock();
|
||||
int numRemoved = _nodePacketCounts.remove(node->getUUID());
|
||||
unlock();
|
||||
qDebug() << "RPP::killNode *************************************";
|
||||
printf("\t\t RPP::killNode: %s killed %d nodes\n", node->getUUID().toString().toLatin1().data(), numRemoved);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue