From b0802b34738566a51272687da9e8911ce148fda0 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Fri, 23 Aug 2019 01:27:14 -0400 Subject: [PATCH] add: logging --- torba/torba/client/baseledger.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/torba/torba/client/baseledger.py b/torba/torba/client/baseledger.py index 72db7b802..e74e17852 100644 --- a/torba/torba/client/baseledger.py +++ b/torba/torba/client/baseledger.py @@ -476,6 +476,8 @@ class BaseLedger(metaclass=LedgerRegistry): "Wallet is out of sync after syncing. Remote: %s with %d items, local: %s with %d items", remote_status, len(remote_history), local_status, len(local_history) ) + log.warning("local: %s", local_history) + log.warning("remote: %s", remote_history) else: log.info("Sync completed for: %s", address)