mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 09:03:53 +02: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);
|
QString domainServerAddress = QString("127.0.0.1") + ":" + QString::number(domainPort);
|
||||||
if (parser.isSet(domainAddressOption)) {
|
if (parser.isSet(domainAddressOption)) {
|
||||||
domainServerAddress = parser.value(domainAddressOption);
|
domainServerAddress = parser.value(domainAddressOption);
|
||||||
qDebug() << "domainServerAddress is " << domainServerAddress;
|
|
||||||
connectToDomain(domainServerAddress);
|
connectToDomain(domainServerAddress);
|
||||||
} else if (!_url.host().isEmpty()) {
|
} else if (!_url.host().isEmpty()) {
|
||||||
QUrl domainURL;
|
QUrl domainURL;
|
||||||
|
@ -133,7 +132,6 @@ ATPClientApp::ATPClientApp(int argc, char* argv[]) :
|
||||||
domainURL.setHost(_url.host());
|
domainURL.setHost(_url.host());
|
||||||
connectToDomain(domainURL.toString());
|
connectToDomain(domainURL.toString());
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "domainServerAddress is default " << domainServerAddress;
|
|
||||||
connectToDomain(domainServerAddress);
|
connectToDomain(domainServerAddress);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue