diff options
author | drebs <drebs@leap.se> | 2014-11-25 16:25:33 -0200 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-02-11 14:03:18 -0400 |
commit | d8c457680b79c202d54dcf9ea799a03b5ffc6c03 (patch) | |
tree | 8f3165fcd29656703260089d4f0dbe87583307fc /client/src | |
parent | c24452af4da078eaf15aa0841d8f8482886735f4 (diff) |
Add local replica info to sync debug output.
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/leap/soledad/client/sync.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/client/src/leap/soledad/client/sync.py b/client/src/leap/soledad/client/sync.py index aa19ddab..1a5e2989 100644 --- a/client/src/leap/soledad/client/sync.py +++ b/client/src/leap/soledad/client/sync.py @@ -115,9 +115,10 @@ class SoledadSynchronizer(Synchronizer): " target generation: %d\n" " target trans id: %s\n" " target my gen: %d\n" - " target my trans_id: %s" + " target my trans_id: %s\n" + " source replica_uid: %s\n" % (self.target_replica_uid, target_gen, target_trans_id, - target_my_gen, target_my_trans_id)) + target_my_gen, target_my_trans_id, self.source._replica_uid)) # make sure we'll have access to target replica uid once it exists if self.target_replica_uid is None: |