summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/src/leap/soledad/client/http_target/fetch.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/client/src/leap/soledad/client/http_target/fetch.py b/client/src/leap/soledad/client/http_target/fetch.py
index 57578563..65e576d9 100644
--- a/client/src/leap/soledad/client/http_target/fetch.py
+++ b/client/src/leap/soledad/client/http_target/fetch.py
@@ -247,5 +247,6 @@ def _emit_receive_status(received_docs, total):
content = {'received': received_docs, 'total': total}
emit_async(SOLEDAD_SYNC_RECEIVE_STATUS, content)
- msg = "%d/%d" % (received_docs, total)
- logger.debug("Sync receive status: %s" % msg)
+ if received_docs % 20 == 0:
+ msg = "%d/%d" % (received_docs, total)
+ logger.debug("Sync receive status: %s" % msg)