mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 17:49:27 +02:00
some newline additions for logging in NodeList
This commit is contained in:
parent
bbc051a764
commit
1c792cf46a
1 changed files with 3 additions and 3 deletions
|
@ -279,12 +279,12 @@ void NodeList::sendDomainServerCheckIn() {
|
||||||
sockaddr_in tempAddress;
|
sockaddr_in tempAddress;
|
||||||
memcpy(&tempAddress.sin_addr, pHostInfo->h_addr_list[0], pHostInfo->h_length);
|
memcpy(&tempAddress.sin_addr, pHostInfo->h_addr_list[0], pHostInfo->h_length);
|
||||||
strcpy(_domainIP, inet_ntoa(tempAddress.sin_addr));
|
strcpy(_domainIP, inet_ntoa(tempAddress.sin_addr));
|
||||||
qDebug("Domain Server: %s", _domainHostname);
|
qDebug("Domain Server: %s\n", _domainHostname);
|
||||||
} else {
|
} else {
|
||||||
qDebug("Failed domain server lookup");
|
qDebug("Failed domain server lookup\n");
|
||||||
}
|
}
|
||||||
} else if (!printedDomainServerIP) {
|
} else if (!printedDomainServerIP) {
|
||||||
qDebug("Domain Server IP: %s", _domainIP);
|
qDebug("Domain Server IP: %s\n", _domainIP);
|
||||||
printedDomainServerIP = true;
|
printedDomainServerIP = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue