diff options
author | Ken Moore <ken@ixsystems.com> | 2017-06-27 08:39:06 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-06-27 08:39:06 -0400 |
commit | 23e6d3530c092e336bd8d9cd89e4146d9e74ef43 (patch) | |
tree | ece6c0ee2c20a3e5f2812f69df1dcef9e991075b /src-qt5/core/lumina-desktop-unified/main.cpp | |
parent | Add some debugging to the unified process (diff) | |
download | lumina-23e6d3530c092e336bd8d9cd89e4146d9e74ef43.tar.gz lumina-23e6d3530c092e336bd8d9cd89e4146d9e74ef43.tar.bz2 lumina-23e6d3530c092e336bd8d9cd89e4146d9e74ef43.zip |
Some more debugging
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/main.cpp')
-rw-r--r-- | src-qt5/core/lumina-desktop-unified/main.cpp | 3 |
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 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; } |