Index: trunk/FACT++/gui/fact.cc
===================================================================
--- trunk/FACT++/gui/fact.cc	(revision 13619)
+++ trunk/FACT++/gui/fact.cc	(revision 13640)
@@ -1,3 +1,5 @@
 #include "FactGui.h"
+
+#include <TSystem.h>
 
 #include "src/FACT.h"
@@ -66,8 +68,17 @@
     Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
 
+    cout << "LD_LIBRARY_PATH=" << gSystem->GetDynamicPath() << endl;
+
+    cout << "--- Starting QApplication ---" << endl;
     QApplication app(argc, const_cast<char**>(argv));
 
+    cout << "--- Instaniating GUI ---" << endl;
+
     FactGui gui(conf);
+
+    cout << "--- Show GUI ---" << endl;
     gui.show();
+
+    cout << "--- Main loop ---" << endl;
 
     const int rc = app.exec();
