NOISSUE add some logging to profile fetching failures
This commit is contained in:
parent
019c77f9f7
commit
70c04745ee
@ -56,6 +56,11 @@ void MinecraftProfileStep::onRequestDone(
|
||||
return;
|
||||
}
|
||||
if (error != QNetworkReply::NoError) {
|
||||
qWarning() << "Error getting profile:";
|
||||
qWarning() << " HTTP Status: " << requestor->httpStatus_;
|
||||
qWarning() << " Internal error no.: " << error;
|
||||
qWarning() << " Error string: " << requestor->errorString_;
|
||||
|
||||
emit finished(
|
||||
AccountTaskState::STATE_FAILED_SOFT,
|
||||
tr("Minecraft Java profile acquisition failed.")
|
||||
|
Loading…
Reference in New Issue
Block a user