diff options
author | swirl <swurl@swurl.xyz> | 2022-01-24 19:36:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-24 19:36:31 -0500 |
commit | 068094583912797855cc7ef8045198d51eedcfac (patch) | |
tree | b5dc3283c04e2ffcfdc305c99da00c5f6edd9581 /launcher/minecraft/auth/steps | |
parent | 631e6707754c9a713cf4e50243d1b152eca727a4 (diff) | |
parent | 0235eb5c286413332dcc2f7af8171bd87b61c3c5 (diff) | |
download | PrismLauncher-068094583912797855cc7ef8045198d51eedcfac.tar.gz PrismLauncher-068094583912797855cc7ef8045198d51eedcfac.tar.bz2 PrismLauncher-068094583912797855cc7ef8045198d51eedcfac.zip |
Merge pull request #96 from dada513/develop
rebase with upstream
Diffstat (limited to 'launcher/minecraft/auth/steps')
-rw-r--r-- | launcher/minecraft/auth/steps/MinecraftProfileStep.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/launcher/minecraft/auth/steps/MinecraftProfileStep.cpp b/launcher/minecraft/auth/steps/MinecraftProfileStep.cpp index 9fef99b0..add91659 100644 --- a/launcher/minecraft/auth/steps/MinecraftProfileStep.cpp +++ b/launcher/minecraft/auth/steps/MinecraftProfileStep.cpp @@ -56,6 +56,14 @@ 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_; + + qWarning() << " Response:"; + qWarning() << QString::fromUtf8(data); + emit finished( AccountTaskState::STATE_FAILED_SOFT, tr("Minecraft Java profile acquisition failed.") |