From 2cb5ca71aadeb8e5286ef0430681893fd411dd17 Mon Sep 17 00:00:00 2001 From: DSCaskey <31944718+DSCaskey@users.noreply.github.com> Date: Sat, 21 Oct 2023 16:43:01 -0400 Subject: [PATCH] revert qCWarning() to qCDebug() --- src/app/seamlyme/mapplication.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/seamlyme/mapplication.cpp b/src/app/seamlyme/mapplication.cpp index 89a322705cfd..a40f24679fc1 100644 --- a/src/app/seamlyme/mapplication.cpp +++ b/src/app/seamlyme/mapplication.cpp @@ -647,7 +647,7 @@ void MApplication::ParseCommandLine(const SocketConnection &connection, const QS return; } - qCWarning(mApp, "Can't establish connection to the server '%s'", qUtf8Printable(serverName)); + qCDebug(mApp, "Can't establish connection to the server '%s'", qUtf8Printable(serverName)); localServer = new QLocalServer(this); connect(localServer, &QLocalServer::newConnection, this, &MApplication::NewLocalSocketConnection);