remove extra debug information for node thread cleanup

This commit is contained in:
Stephen Birarda 2015-03-11 17:18:49 -07:00
parent 5d9a3811ca
commit 7a8e94f1e5
4 changed files with 0 additions and 11 deletions

View file

@ -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()");

View file

@ -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; }

View file

@ -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);

View file

@ -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);