Converted non critical qCritical() calls into qInfo() calls.
This commit is contained in:
@ -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<bidding> 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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user