mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Merge pull request #3347 from birarda/domain-connect-debug
add debug to show that domain connection is being attempted
This commit is contained in:
commit
100f9c9ac4
1 changed files with 4 additions and 0 deletions
|
@ -343,6 +343,10 @@ void NodeList::sendDomainServerCheckIn() {
|
|||
PacketType domainPacketType = !_domainHandler.isConnected()
|
||||
? PacketTypeDomainConnectRequest : PacketTypeDomainListRequest;
|
||||
|
||||
if (!_domainHandler.isConnected()) {
|
||||
qDebug() << "Sending connect request to domain-server at" << _domainHandler.getHostname();
|
||||
}
|
||||
|
||||
// construct the DS check in packet
|
||||
QUuid packetUUID = _sessionUUID;
|
||||
|
||||
|
|
Loading…
Reference in a new issue