##// END OF EJS Templates
sshpeer: only print out 'running ssh' messages in debug mode (BC)...
Siddharth Agarwal -
r20794:8b0e3a89 default
parent child Browse files
Show More
@@ -51,7 +51,7 b' class sshpeer(wireproto.wirepeer):'
51 51 cmd = '%s %s %s' % (sshcmd, args,
52 52 util.shellquote("%s init %s" %
53 53 (_serverquote(remotecmd), _serverquote(self.path))))
54 ui.note(_('running %s\n') % cmd)
54 ui.debug('running %s\n' % cmd)
55 55 res = util.system(cmd)
56 56 if res != 0:
57 57 self._abort(error.RepoError(_("could not create remote repo")))
@@ -68,7 +68,7 b' class sshpeer(wireproto.wirepeer):'
68 68 cmd = '%s %s %s' % (sshcmd, args,
69 69 util.shellquote("%s -R %s serve --stdio" %
70 70 (_serverquote(remotecmd), _serverquote(self.path))))
71 self.ui.note(_('running %s\n') % cmd)
71 self.ui.debug('running %s\n' % cmd)
72 72 cmd = util.quotecommand(cmd)
73 73
74 74 # while self.subprocess isn't used, having it allows the subprocess to
General Comments 0
You need to be logged in to leave comments. Login now