diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-12-27 17:04:42 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-12-27 17:04:42 +0100 |
commit | c8d8046412467d10abd439bf2066b2304122d7c6 (patch) | |
tree | adb0a9a2b0a61c2246845c1452414158c58b4c4a /launcher/minecraft/auth/steps/MinecraftProfileStep.cpp | |
parent | 4d334b645d0e230c19fa4756a4cbec28dce744d7 (diff) | |
download | PrismLauncher-c8d8046412467d10abd439bf2066b2304122d7c6.tar.gz PrismLauncher-c8d8046412467d10abd439bf2066b2304122d7c6.tar.bz2 PrismLauncher-c8d8046412467d10abd439bf2066b2304122d7c6.zip |
refactor: add logging category for credentials
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/minecraft/auth/steps/MinecraftProfileStep.cpp')
-rw-r--r-- | launcher/minecraft/auth/steps/MinecraftProfileStep.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/launcher/minecraft/auth/steps/MinecraftProfileStep.cpp b/launcher/minecraft/auth/steps/MinecraftProfileStep.cpp index b39b9326..6cfa7c1c 100644 --- a/launcher/minecraft/auth/steps/MinecraftProfileStep.cpp +++ b/launcher/minecraft/auth/steps/MinecraftProfileStep.cpp @@ -2,6 +2,7 @@ #include <QNetworkRequest> +#include "Logging.h" #include "minecraft/auth/AuthRequest.h" #include "minecraft/auth/Parsers.h" #include "net/NetUtils.h" @@ -40,9 +41,7 @@ void MinecraftProfileStep::onRequestDone( auto requestor = qobject_cast<AuthRequest *>(QObject::sender()); requestor->deleteLater(); -#ifndef NDEBUG - qDebug() << data; -#endif + qCDebug(authCredentials()) << data; if (error == QNetworkReply::ContentNotFoundError) { // NOTE: Succeed even if we do not have a profile. This is a valid account state. if(m_data->type == AccountType::Mojang) { |