From 0c10cf1243e1b9a1c716a8a59d462a2f345e91f6 Mon Sep 17 00:00:00 2001 From: Duke Date: Sat, 27 Jan 2024 09:15:15 -0800 Subject: [PATCH] Also prevent logging of passphrase length in first time wizard --- src/firsttimewizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/firsttimewizard.cpp b/src/firsttimewizard.cpp index 45fdf46..e5d8dc7 100644 --- a/src/firsttimewizard.cpp +++ b/src/firsttimewizard.cpp @@ -183,7 +183,7 @@ NewOrRestorePage::NewOrRestorePage(FirstTimeWizard *parent) : QWizardPage(parent parent->button(QWizard::NextButton)->setEnabled(false); int length = passphrase.length(); - qDebug() << __func__ << ": passphrase length=" << length; + //qDebug() << __func__ << ": passphrase length=" << length; char *sequence = NULL; sequence = new char[length+1];