From c48210243cf5ba597ce4e77d6c19edf4384f473b Mon Sep 17 00:00:00 2001 From: Daniel Teichmann Date: Thu, 8 Jul 2021 15:56:36 +0200 Subject: qDebug() -> qCritical() on startup lockfile failure. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 7f86b6d..e02db9a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -60,7 +60,7 @@ int main(int argc, char *argv[]) { qDebug().noquote() << QString("Checking for a lockfile at: '%0'").arg(tmpFilePath); if(!lockFile.tryLock(100)){ - qDebug().noquote() << "You already have this app running.\n" + qCritical().noquote() << "You already have this app running.\n" << "Only one instance is allowed.\n" << "Closing application now with an error."; -- cgit v1.2.3