Merge pull request #475 from Scrumplex/fix-hide-all-tokens

Hide all tokens for non-Debug builds for log and logfiles
This commit is contained in:
timoreo22 2022-05-02 10:45:58 +02:00 committed by DioEgizio
parent ac66bddeda
commit cab40026f2

View File

@ -50,7 +50,9 @@ void LauncherLoginStep::onRequestDone(
auto requestor = qobject_cast<AuthRequest *>(QObject::sender());
requestor->deleteLater();
#ifndef NDEBUG
qDebug() << data;
#endif
if (error != QNetworkReply::NoError) {
qWarning() << "Reply error:" << error;
#ifndef NDEBUG