Removed logging statement

This commit is contained in:
Mark Qvist 2023-09-18 00:26:49 +02:00
parent aaf4dad420
commit 14f9320860

View File

@ -525,7 +525,6 @@ class CallbackSubprocess:
Write bytes to the stdin of the child process.
:param data: bytes to write
"""
self._log.debug(f"write({data})")
os.write(self._child_stdin, data)
def set_winsize(self, r: int, c: int, h: int, v: int):