mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 12:52:49 +02:00
Pospone logging of the shutdown reason
This makes it more obvious to the log reader why the DS went down.
This commit is contained in:
parent
7e19110dd5
commit
6fd5176474
2 changed files with 7 additions and 5 deletions
|
@ -184,13 +184,15 @@ bool HTTPManager::bindSocket() {
|
|||
|
||||
return true;
|
||||
} else {
|
||||
qCritical() << "Failed to open HTTP server socket:" << errorString() << " can't continue";
|
||||
QMetaObject::invokeMethod(this, "queuedExit", Qt::QueuedConnection);
|
||||
|
||||
QString errorMessage = "Failed to open HTTP server socket: " + errorString() + ", can't continue";
|
||||
QMetaObject::invokeMethod(this, "queuedExit", Qt::QueuedConnection, Q_ARG(QString, errorMessage));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
void HTTPManager::queuedExit() {
|
||||
void HTTPManager::queuedExit(QString errorMessage) {
|
||||
if (!errorMessage.isEmpty()) {
|
||||
qCCritical(embeddedwebserver) << qPrintable(errorMessage);
|
||||
}
|
||||
QCoreApplication::exit(SOCKET_ERROR_EXIT_CODE);
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ public:
|
|||
|
||||
private slots:
|
||||
void isTcpServerListening();
|
||||
void queuedExit();
|
||||
void queuedExit(QString errorMessage);
|
||||
|
||||
private:
|
||||
bool bindSocket();
|
||||
|
|
Loading…
Reference in a new issue