cleanup a couple of debug lines

This commit is contained in:
Stephen Birarda 2014-10-06 10:40:56 -07:00
parent 484c0d30cb
commit 253fe53571
2 changed files with 2 additions and 1 deletions

View file

@ -957,6 +957,7 @@ void DomainServer::transactionJSONCallback(const QJsonObject& data) {
} }
void DomainServer::requestCurrentPublicSocketViaSTUN() { void DomainServer::requestCurrentPublicSocketViaSTUN() {
qDebug() << "Sending STUN request to retrieve public socket information.";
LimitedNodeList::getInstance()->sendSTUNRequest(); LimitedNodeList::getInstance()->sendSTUNRequest();
} }

View file

@ -90,7 +90,7 @@ void DomainHandler::setSockAddr(const HifiSockAddr& sockAddr, const QString& hos
void DomainHandler::setUUID(const QUuid& uuid) { void DomainHandler::setUUID(const QUuid& uuid) {
if (uuid != _uuid) { if (uuid != _uuid) {
_uuid = uuid; _uuid = uuid;
qDebug() << "Domain uuid changed to" << uuidStringWithoutCurlyBraces(_uuid); qDebug() << "Domain ID changed to" << uuidStringWithoutCurlyBraces(_uuid);
} }
} }