aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-27 08:39:06 -0400
committerKen Moore <ken@ixsystems.com>2017-06-27 08:39:06 -0400
commit23e6d3530c092e336bd8d9cd89e4146d9e74ef43 (patch)
treeece6c0ee2c20a3e5f2812f69df1dcef9e991075b
parentAdd some debugging to the unified process (diff)
downloadlumina-23e6d3530c092e336bd8d9cd89e4146d9e74ef43.tar.gz
lumina-23e6d3530c092e336bd8d9cd89e4146d9e74ef43.tar.bz2
lumina-23e6d3530c092e336bd8d9cd89e4146d9e74ef43.zip
Some more debugging
-rw-r--r--src-qt5/core/lumina-desktop-unified/main.cpp3
-rw-r--r--src-qt5/core/lumina-session/session.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/main.cpp b/src-qt5/core/lumina-desktop-unified/main.cpp
index 50092a46..7a454eab 100644
--- a/src-qt5/core/lumina-desktop-unified/main.cpp
+++ b/src-qt5/core/lumina-desktop-unified/main.cpp
@@ -12,6 +12,7 @@
int main(int argc, char ** argv)
{
+ qDebug() << "Starting lumina-desktop-unified...";
if (argc > 1) {
if (QString(argv[1]) == QString("--version")){
qDebug() << LDesktopUtils::LuminaDesktopVersion();
@@ -42,6 +43,6 @@ int main(int argc, char ** argv)
theme.refresh();
if(DEBUG){ qDebug() << "Exec Time:" << timer->elapsed(); delete timer;}
int retCode = a.exec();
- qDebug() << "Finished Closing Down Lumina";
+ qDebug() << "Finished Closing Down Unified Lumina";
return retCode;
}
diff --git a/src-qt5/core/lumina-session/session.cpp b/src-qt5/core/lumina-session/session.cpp
index 1aa86720..de9b86ee 100644
--- a/src-qt5/core/lumina-session/session.cpp
+++ b/src-qt5/core/lumina-session/session.cpp
@@ -92,7 +92,7 @@ void LSession::start(bool unified){
if(WM=="fluxbox"){
// FLUXBOX BUG BYPASS: if the ~/.fluxbox dir does not exist, it will ignore the given config file
if( !LUtils::isValidBinary("fluxbox") ){
- qDebug() << "[INCOMPLETE LUMINA INSTALLATION] fluxbox binary is missing - cannot continue";
+ qDebug() << "[INCOMPLETE LUMINA INSTALLATION] fluxbox binary is missing - cannot continue";
}else{
QString confDir = QString( getenv("XDG_CONFIG_HOME"))+"/lumina-desktop";
if(!QFile::exists(confDir)){ QDir dir(confDir); dir.mkpath(confDir); }
bgstack15