diff --git a/electrum/gui/qml/components/SweepDialog.qml b/electrum/gui/qml/components/SweepDialog.qml index c1d4b7655..d3f82523b 100644 --- a/electrum/gui/qml/components/SweepDialog.qml +++ b/electrum/gui/qml/components/SweepDialog.qml @@ -146,7 +146,6 @@ ElDialog { onClicked: { console.log('sweeping') root.privateKeys = sweepkeys.text - console.log(root.privateKeys) root.accept() } } diff --git a/electrum/gui/qml/qetxfinalizer.py b/electrum/gui/qml/qetxfinalizer.py index f9e8b1565..a7a4a62ef 100644 --- a/electrum/gui/qml/qetxfinalizer.py +++ b/electrum/gui/qml/qetxfinalizer.py @@ -917,7 +917,7 @@ class QETxSweepFinalizer(QETxFinalizer): def fetch_privkeys_info(): try: self._txins = self._wallet.wallet.network.run_from_another_thread(sweep_preparations(privkeys, self._wallet.wallet.network)) - self._logger.info(f'txins {self._txins!r}') + self._logger.debug(f'txins {self._txins!r}') except UserFacingException as e: self.warning = str(e) return