Also prevent logging of passphrase length in first time wizard

This commit is contained in:
Duke
2024-01-27 09:15:15 -08:00
parent 775135cc44
commit 0c10cf1243

View File

@@ -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];