mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
remove some debug prints
This commit is contained in:
parent
1192e86494
commit
bdbfe25a53
1 changed files with 0 additions and 2 deletions
|
@ -125,7 +125,6 @@ ATPClientApp::ATPClientApp(int argc, char* argv[]) :
|
|||
QString domainServerAddress = QString("127.0.0.1") + ":" + QString::number(domainPort);
|
||||
if (parser.isSet(domainAddressOption)) {
|
||||
domainServerAddress = parser.value(domainAddressOption);
|
||||
qDebug() << "domainServerAddress is " << domainServerAddress;
|
||||
connectToDomain(domainServerAddress);
|
||||
} else if (!_url.host().isEmpty()) {
|
||||
QUrl domainURL;
|
||||
|
@ -133,7 +132,6 @@ ATPClientApp::ATPClientApp(int argc, char* argv[]) :
|
|||
domainURL.setHost(_url.host());
|
||||
connectToDomain(domainURL.toString());
|
||||
} else {
|
||||
qDebug() << "domainServerAddress is default " << domainServerAddress;
|
||||
connectToDomain(domainServerAddress);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue