mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
remove extra debug information for node thread cleanup
This commit is contained in:
parent
5d9a3811ca
commit
7a8e94f1e5
4 changed files with 0 additions and 11 deletions
|
@ -27,10 +27,6 @@ DatagramProcessor::DatagramProcessor(QObject* parent) :
|
|||
|
||||
}
|
||||
|
||||
DatagramProcessor::~DatagramProcessor() {
|
||||
qDebug() << "DP dtor called from" << QThread::currentThread() << "and the DP thread is" << thread();
|
||||
}
|
||||
|
||||
void DatagramProcessor::processDatagrams() {
|
||||
PerformanceWarning warn(Menu::getInstance()->isOptionChecked(MenuOption::PipelineWarnings),
|
||||
"DatagramProcessor::processDatagrams()");
|
||||
|
|
|
@ -18,7 +18,6 @@ class DatagramProcessor : public QObject {
|
|||
Q_OBJECT
|
||||
public:
|
||||
DatagramProcessor(QObject* parent = 0);
|
||||
~DatagramProcessor();
|
||||
|
||||
int getInPacketCount() const { return _inPacketCount; }
|
||||
int getOutPacketCount() const { return _outPacketCount; }
|
||||
|
|
|
@ -63,10 +63,6 @@ NodeList::NodeList(char newOwnerType, unsigned short socketListenPort, unsigned
|
|||
connect(&AccountManager::getInstance(), &AccountManager::logoutComplete , this, &NodeList::reset);
|
||||
}
|
||||
|
||||
NodeList::~NodeList() {
|
||||
qDebug() << "NL dtor called from" << QThread::currentThread() << "and the NL thread is" << thread();
|
||||
}
|
||||
|
||||
qint64 NodeList::sendStats(const QJsonObject& statsObject, HifiSockAddr destination) {
|
||||
QByteArray statsPacket = byteArrayWithPopulatedHeader(PacketTypeNodeJsonStats);
|
||||
QDataStream statsPacketStream(&statsPacket, QIODevice::Append);
|
||||
|
|
|
@ -78,8 +78,6 @@ private:
|
|||
NodeList(NodeList const&); // Don't implement, needed to avoid copies of singleton
|
||||
void operator=(NodeList const&); // Don't implement, needed to avoid copies of singleton
|
||||
|
||||
~NodeList();
|
||||
|
||||
void sendSTUNRequest();
|
||||
bool processSTUNResponse(const QByteArray& packet);
|
||||
|
||||
|
|
Loading…
Reference in a new issue