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/EntitlementsStep.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/EntitlementsStep.cpp')
-rw-r--r-- | launcher/minecraft/auth/steps/EntitlementsStep.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/launcher/minecraft/auth/steps/EntitlementsStep.cpp b/launcher/minecraft/auth/steps/EntitlementsStep.cpp index f726244f..bd604292 100644 --- a/launcher/minecraft/auth/steps/EntitlementsStep.cpp +++ b/launcher/minecraft/auth/steps/EntitlementsStep.cpp @@ -3,6 +3,7 @@ #include <QNetworkRequest> #include <QUuid> +#include "Logging.h" #include "minecraft/auth/AuthRequest.h" #include "minecraft/auth/Parsers.h" @@ -41,9 +42,7 @@ void EntitlementsStep::onRequestDone( auto requestor = qobject_cast<AuthRequest *>(QObject::sender()); requestor->deleteLater(); -#ifndef NDEBUG - qDebug() << data; -#endif + qCDebug(authCredentials()) << data; // TODO: check presence of same entitlementsRequestId? // TODO: validate JWTs? |