aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-27 08:32:48 -0400
committerKen Moore <ken@ixsystems.com>2017-06-27 08:32:48 -0400
commit57e4e4d134d16d35aa0ca566534d46a59fd78ed3 (patch)
treece88b9d286e1e4575e4a95adc5957a0463ea413a /src-qt5
parentOops - forgot to add the new NativeEventFilter files in the last commit. (diff)
downloadlumina-57e4e4d134d16d35aa0ca566534d46a59fd78ed3.tar.gz
lumina-57e4e4d134d16d35aa0ca566534d46a59fd78ed3.tar.bz2
lumina-57e4e4d134d16d35aa0ca566534d46a59fd78ed3.zip
Add some debugging to the unified process
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/core/lumina-desktop-unified/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/main.cpp b/src-qt5/core/lumina-desktop-unified/main.cpp
index 6141f1ea..50092a46 100644
--- a/src-qt5/core/lumina-desktop-unified/main.cpp
+++ b/src-qt5/core/lumina-desktop-unified/main.cpp
@@ -8,7 +8,7 @@
#include "global-includes.h"
#include "LSession.h"
-#define DEBUG 0
+#define DEBUG 1
int main(int argc, char ** argv)
{
@@ -29,6 +29,7 @@ int main(int argc, char ** argv)
setenv("XDG_CURRENT_DESKTOP","Lumina",1);
unsetenv("QT_QPA_PLATFORMTHEME"); //causes issues with Lumina themes - not many people have this by default...
//Startup the session
+ if(DEBUG){ qDebug() << "Starting unified session"; }
LSession a(argc, argv);
if(!a.isPrimaryProcess()){ return 0; }
QTime *timer=0;
bgstack15