diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-12-13 03:06:10 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-12-13 03:06:10 +0100 |
commit | 0af6f96c3de54c940799826ff6f3c89bb46f1540 (patch) | |
tree | a6085748182b43b121d908df0e7a0454513f3c5a /logic/auth | |
parent | 382e4fe6b346d27f03a69f028904186334ed2fec (diff) | |
download | MultiMC-0af6f96c3de54c940799826ff6f3c89bb46f1540.tar MultiMC-0af6f96c3de54c940799826ff6f3c89bb46f1540.tar.gz MultiMC-0af6f96c3de54c940799826ff6f3c89bb46f1540.tar.lz MultiMC-0af6f96c3de54c940799826ff6f3c89bb46f1540.tar.xz MultiMC-0af6f96c3de54c940799826ff6f3c89bb46f1540.zip |
Do not log auth crud
Diffstat (limited to 'logic/auth')
-rw-r--r-- | logic/auth/flows/AuthenticateTask.cpp | 2 | ||||
-rw-r--r-- | logic/auth/flows/RefreshTask.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/logic/auth/flows/AuthenticateTask.cpp b/logic/auth/flows/AuthenticateTask.cpp index d8e5b624..cc26cd1b 100644 --- a/logic/auth/flows/AuthenticateTask.cpp +++ b/logic/auth/flows/AuthenticateTask.cpp @@ -76,7 +76,7 @@ bool AuthenticateTask::processResponse(QJsonObject responseData) // Read the response data. We need to get the client token, access token, and the selected // profile. QLOG_DEBUG() << "Processing authentication response."; - QLOG_DEBUG() << responseData; + // QLOG_DEBUG() << responseData; // If we already have a client token, make sure the one the server gave us matches our // existing one. QLOG_DEBUG() << "Getting client token."; diff --git a/logic/auth/flows/RefreshTask.cpp b/logic/auth/flows/RefreshTask.cpp index d0ecf06e..16feac6e 100644 --- a/logic/auth/flows/RefreshTask.cpp +++ b/logic/auth/flows/RefreshTask.cpp @@ -67,7 +67,7 @@ bool RefreshTask::processResponse(QJsonObject responseData) // profile. QLOG_DEBUG() << "Processing authentication response."; - QLOG_DEBUG() << responseData; + // QLOG_DEBUG() << responseData; // If we already have a client token, make sure the one the server gave us matches our // existing one. QString clientToken = responseData.value("clientToken").toString(""); |