From 14f93208605f09defa9c6a0e0525eda100243728 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Mon, 18 Sep 2023 00:26:49 +0200 Subject: [PATCH] Removed logging statement --- rnsh/process.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rnsh/process.py b/rnsh/process.py index cecf512..ffbee79 100644 --- a/rnsh/process.py +++ b/rnsh/process.py @@ -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):