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:
Atlante45 2016-01-21 17:54:10 -08:00
parent 7e19110dd5
commit 6fd5176474
2 changed files with 7 additions and 5 deletions

View file

@ -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);
}

View file

@ -39,7 +39,7 @@ public:
private slots:
void isTcpServerListening();
void queuedExit();
void queuedExit(QString errorMessage);
private:
bool bindSocket();