some newline additions for logging in NodeList

This commit is contained in:
Stephen Birarda 2013-09-09 15:35:28 -07:00
parent bbc051a764
commit 1c792cf46a

View file

@ -279,12 +279,12 @@ void NodeList::sendDomainServerCheckIn() {
sockaddr_in tempAddress;
memcpy(&tempAddress.sin_addr, pHostInfo->h_addr_list[0], pHostInfo->h_length);
strcpy(_domainIP, inet_ntoa(tempAddress.sin_addr));
qDebug("Domain Server: %s", _domainHostname);
qDebug("Domain Server: %s\n", _domainHostname);
} else {
qDebug("Failed domain server lookup");
qDebug("Failed domain server lookup\n");
}
} else if (!printedDomainServerIP) {
qDebug("Domain Server IP: %s", _domainIP);
qDebug("Domain Server IP: %s\n", _domainIP);
printedDomainServerIP = true;
}