tlogging: fix call with multiple args - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 06cff9ac10e9c8480184f837d59221a344033ca8 DIR parent fd09033890f44f6279385d79309410299cacb9ca HTML Author: SomberNight <somber.night@protonmail.com> Date: Mon, 6 May 2019 23:03:19 +0200 logging: fix call with multiple args Diffstat: M electrum/address_synchronizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/address_synchronizer.py b/electrum/address_synchronizer.py t@@ -309,7 +309,7 @@ class AddressSynchronizer(Logger): self.db.remove_spent_outpoint(prevout_hash, prevout_n) with self.transaction_lock: - self.logger.info("removing tx from history", tx_hash) + self.logger.info(f"removing tx from history {tx_hash}") tx = self.db.remove_transaction(tx_hash) remove_from_spent_outpoints() self._remove_tx_from_local_history(tx_hash)