From bd5f4a413e196fa1a64d140b3beb3f58520171fb Mon Sep 17 00:00:00 2001 From: Rainer Keller Date: Fri, 5 Aug 2011 10:48:44 +0200 Subject: Add further detail to error message --- src/other/applicationmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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*))); -- cgit v1.2.3