Commit 769ece25 authored by David Wilson's avatar David Wilson

fakessh: improve logging slightly.

Makes it easier to match up reads/writes across log files by using
message byte count
parent fb9ce105
......@@ -163,12 +163,13 @@ class Process(object):
return
data = msg.unpickle()
IOLOG.debug('%r._on_stdin(%r)', self, data)
if data == mitogen.core._DEAD:
IOLOG.debug('%r._on_stdin() -> %r', self, data)
self.pump.close()
else:
self.pump.write(data)
return
IOLOG.debug('%r._on_stdin() -> len %d', self, len(data))
self.pump.write(data)
def _on_control(self, msg):
if msg != mitogen.core._DEAD:
......@@ -195,7 +196,7 @@ class Process(object):
self.router.broker.shutdown()
def _on_pump_receive(self, s):
IOLOG.info('%r._on_pump_receive()', self)
IOLOG.info('%r._on_pump_receive(len %d)', self, len(s))
self.stdin.put(s)
def _on_pump_disconnect(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment