From 85c386f45d72bc69ef2b32ab1928252762003286 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 29 Dec 2023 21:25:07 -0800 Subject: [PATCH] termio: remove old warning log statement used for debugging --- src/termio/Exec.zig | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/termio/Exec.zig b/src/termio/Exec.zig index 8e8449559..b08ccbada 100644 --- a/src/termio/Exec.zig +++ b/src/termio/Exec.zig @@ -1160,11 +1160,6 @@ const Subprocess = struct { }, else => if (getpgid(pid)) |pgid| { - log.warn( - "state killpg pid={} pgid={} mypid={} mypgid={}", - .{ pid, pgid, c.getpid(), c.getpgid(0) }, - ); - // It is possible to send a killpg between the time that // our child process calls setsid but before or simultaneous // to calling execve. In this case, the direct child dies