From 089cefb77b000fd92957c7061bce82325b08b50f Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Fri, 23 Aug 2019 13:31:00 -0300 Subject: [PATCH] make it debug for now, there are false positives --- torba/torba/client/baseledger.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/torba/torba/client/baseledger.py b/torba/torba/client/baseledger.py index 72db7b802..d127243d9 100644 --- a/torba/torba/client/baseledger.py +++ b/torba/torba/client/baseledger.py @@ -469,15 +469,17 @@ class BaseLedger(metaclass=LedgerRegistry): if address_manager is not None: await address_manager.ensure_address_gap() - local_status, local_history = await self.get_local_status_and_history(address) + local_status, local_history = await self.get_local_status_and_history(address) if local_status != remote_status: - log.warning( + log.debug( "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.debug("local: %s", local_history) + log.debug("remote: %s", remote_history) else: - log.info("Sync completed for: %s", address) + log.debug("Sync completed for: %s", address) async def cache_transaction(self, txid, remote_height): cache_item = self._tx_cache.get(txid)