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 GitHub
commit 546d394868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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