Do not log auth crud

This commit is contained in:
Petr Mrázek 2013-12-13 03:06:10 +01:00
parent 382e4fe6b3
commit 0af6f96c3d
2 changed files with 2 additions and 2 deletions

View File

@ -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.";

View File

@ -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("");