Browse Source

Tweak error message format

Matt Clarkson 11 years ago
parent
commit
990a42e5a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Libs/CommandLineModules/Core/ctkCmdLineModuleManager.cpp

+ 1 - 1
Libs/CommandLineModules/Core/ctkCmdLineModuleManager.cpp

@@ -177,7 +177,7 @@ ctkCmdLineModuleManager::registerModule(const QUrl &location)
       }
       catch (const ctkCmdLineModuleTimeoutException& e)
       {
-        qDebug() << "Extracting XML from " << location.toString() << " timed out.";
+        qDebug() << "Extracting XML from " << location.toString() << " timed-out, with message:" << e.what();
         throw;
       }
       catch (...)