From a304099c5986ca0f056694f77ac34c313b3cf62b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Fri, 18 Apr 2025 20:11:06 +0200 Subject: [PATCH] Change "Interface already running" message to be a warning instead of just debug. --- interface/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/main.cpp b/interface/src/main.cpp index d67a1d0c82..e459290697 100644 --- a/interface/src/main.cpp +++ b/interface/src/main.cpp @@ -654,8 +654,8 @@ int main(int argc, const char* argv[]) { socket.close(); - qDebug() << "Interface instance appears to be running, exiting"; - qDebug() << "Start with --allowMultipleInstances to allow running multiple instances at once."; + qCritical() << "Interface instance appears to be running, exiting"; + qCritical() << "Start with --allowMultipleInstances to allow running multiple instances at once."; return EXIT_SUCCESS; }