Change "Interface already running" message to be a warning instead of just debug.

This commit is contained in:
Julian Groß 2025-04-18 20:11:06 +02:00
parent 1cf2d8949e
commit a304099c59

View file

@ -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;
}