diff -r 8da6fe276a23 -r d3f84ccc5495 mercurial/wireproto.py --- 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 = {}