# HG changeset patch # User Bryan O'Sullivan # Date 1127496739 25200 # Node ID 404484c9628e055e111059348b1255851db9361b # Parent cfae1ed2d61fc33831af115784d3c851b1b89559 Help debugability: print ssh command being used when --verbose. diff --git a/mercurial/sshrepo.py b/mercurial/sshrepo.py --- a/mercurial/sshrepo.py +++ b/mercurial/sshrepo.py @@ -32,6 +32,7 @@ class sshrepository(remoterepository): cmd = '%s %s "%s -R %s serve --stdio"' cmd = cmd % (sshcmd, args, remotecmd, self.path) + ui.note('running %s\n' % cmd) self.pipeo, self.pipei, self.pipee = os.popen3(cmd, 'b') def readerr(self):