From 85afc9b32979ca8a1eb14b03c3ba915bc4fb3c11 Mon Sep 17 00:00:00 2001 From: Bent Witthold Date: Sat, 21 Feb 2026 19:38:35 +0100 Subject: [PATCH] Converted non critical qCritical() calls into qInfo() calls. --- libs/BeetRoundCore/network/servercommunicator.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/BeetRoundCore/network/servercommunicator.cpp b/libs/BeetRoundCore/network/servercommunicator.cpp index 4a96662..3d79cb0 100644 --- a/libs/BeetRoundCore/network/servercommunicator.cpp +++ b/libs/BeetRoundCore/network/servercommunicator.cpp @@ -194,7 +194,7 @@ void ServerCommunicator::onSendPostRequestTriggered(const PostRequestTypes type, } else { int statusCode = reply.httpStatus(); qWarning() << "Request not successful:" << statusCode; - qCritical() << "Content:" << reply.readJson(); + qInfo() << "Content:" << reply.readJson(); onPostReplyFailure(type, QString("HTTP status code: %1").arg(statusCode)); } } @@ -273,7 +273,7 @@ void ServerCommunicator::currentBiddingRoundChangedReply(const QJsonDocument jso } void ServerCommunicator::currentBiddingsReply(const QJsonDocument jsonDoc) { - qCritical() << "currentBiddingsReply:" << jsonDoc; + qInfo() << "currentBiddingsReply:" << jsonDoc; const QList biddings = JsonParser::extractBiddings(jsonDoc); @@ -302,7 +302,7 @@ void ServerCommunicator::onLoginTriggered() { } if (m_authToken.isEmpty()) { /// get new authToken - qWarning() << "Creating a new authToken!"; + qInfo() << "Creating a new authToken!"; const QByteArray loginBody = createLoginBody(); onSendPostRequestTriggered(LogInAdmin, loginBody);