Browse Source

qml: sweep: tone down logging

master
Sander van Grieken 1 year ago
parent
commit
fe95a5ec8f
No known key found for this signature in database
GPG Key ID: 9BCF8209EA402EBA
  1. 1
      electrum/gui/qml/components/SweepDialog.qml
  2. 2
      electrum/gui/qml/qetxfinalizer.py

1
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()
}
}

2
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

Loading…
Cancel
Save