From fe95a5ec8fd0e65abb9540e01f75c8bc936717df Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Tue, 8 Oct 2024 12:19:21 +0200 Subject: [PATCH] qml: sweep: tone down logging --- electrum/gui/qml/components/SweepDialog.qml | 1 - electrum/gui/qml/qetxfinalizer.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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