summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Keller <rainer.keller@nokia.com>2011-08-05 10:48:44 +0200
committerRainer Keller <rainer.keller@nokia.com>2011-08-05 10:49:12 +0200
commitbd5f4a413e196fa1a64d140b3beb3f58520171fb (patch)
treef817d594d082b06dceb2efaa2a7119c4ce783109
parent00f66c1744d9508bd327f154ff196fffb0b479bd (diff)
Add further detail to error message
-rw-r--r--src/other/applicationmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other/applicationmanager.cpp b/src/other/applicationmanager.cpp
index 8f9778c..711cfc3 100644
--- a/src/other/applicationmanager.cpp
+++ b/src/other/applicationmanager.cpp
@@ -81,7 +81,7 @@ ApplicationManager::ApplicationManager(const VersionStruct &simulatorVersion, QO
mServer = new QLocalServer();
QLocalServer::removeServer(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString());
if (!mServer->listen(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString())) {
- qFatal("Could not create listening unix domain socket at %s", qPrintable(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString()));
+ qFatal("Could not create listening unix domain socket at %s: %s", qPrintable(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString()), qPrintable(mServer->errorString()));
}
connect(mServer, SIGNAL(newConnection()), this, SLOT(handleConnection()));
connect(this, SIGNAL(applicationRegistered(Application*)), this, SLOT(registerApplication(Application*)));