diff options
| -rw-r--r-- | src/other/applicationmanager.cpp | 2 |
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*))); |
