Submitter | phabricator |
---|---|
Date | March 1, 2018, 9:30 p.m. |
Message ID | <f369bdbec9c810a1938f403ab598ece0@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28595/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/wireprotoserver.py b/mercurial/wireprotoserver.py --- a/mercurial/wireprotoserver.py +++ b/mercurial/wireprotoserver.py @@ -588,12 +588,19 @@ state) class sshserver(object): - def __init__(self, ui, repo): + def __init__(self, ui, repo, logfh=None): self._ui = ui self._repo = repo self._fin = ui.fin self._fout = ui.fout + # Log write I/O to stdout and stderr if configured. + if logfh: + self._fout = util.makeloggingfileobject( + logfh, self._fout, 'o', logdata=True) + ui.ferr = util.makeloggingfileobject( + logfh, ui.ferr, 'e', logdata=True) + hook.redirect(True) ui.fout = repo.ui.fout = ui.ferr