Selaa lähdekoodia

Tweak error message format

Matt Clarkson 11 vuotta sitten
vanhempi
commit
990a42e5a3
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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 (...)