--- a/mercurial/commandserver.py Sun Nov 18 19:47:04 2018 +0900
+++ b/mercurial/commandserver.py Sun Nov 18 19:55:53 2018 +0900
@@ -573,7 +573,8 @@
pid = os.fork()
if pid:
try:
- self.ui.debug('forked worker process (pid=%d)\n' % pid)
+ self.ui.log(b'cmdserver',
+ b'forked worker process (pid=%d)\n', pid)
self._workerpids.add(pid)
h.newconnection()
finally:
@@ -610,7 +611,7 @@
if pid == 0:
# no waitable child processes
return
- self.ui.debug('worker process exited (pid=%d)\n' % pid)
+ self.ui.log(b'cmdserver', b'worker process exited (pid=%d)\n', pid)
self._workerpids.discard(pid)
def _runworker(self, conn):