mercurial/wireproto.py
branchstable
changeset 17293 d3f84ccc5495
parent 17205 97eff00046de
child 17424 e7cfe3587ea4
--- a/mercurial/wireproto.py	Mon Jul 30 19:26:05 2012 +0200
+++ b/mercurial/wireproto.py	Sat Jul 28 12:28:35 2012 +0200
@@ -236,6 +236,7 @@
         if not self.capable('pushkey'):
             yield False, None
         f = future()
+        self.ui.debug('preparing pushkey for "%s:%s"\n' % (namespace, key))
         yield todict(namespace=encoding.fromlocal(namespace),
                      key=encoding.fromlocal(key),
                      old=encoding.fromlocal(old),
@@ -256,6 +257,7 @@
         if not self.capable('pushkey'):
             yield {}, None
         f = future()
+        self.ui.debug('preparing listkeys for "%s"\n' % namespace)
         yield todict(namespace=encoding.fromlocal(namespace)), f
         d = f.value
         r = {}