From c419b1ade6f4fb1e58e3eba814823433eee0448f Mon Sep 17 00:00:00 2001 From: sin-ack Date: Thu, 12 Aug 2021 19:03:12 +0000 Subject: Shell: Remove dbgln related to process group IDs This is insignificant debugging information and will print out during runs with Lagom. --- Userland/Shell/main.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'Userland/Shell/main.cpp') diff --git a/Userland/Shell/main.cpp b/Userland/Shell/main.cpp index 8d7e690f04..4203eca817 100644 --- a/Userland/Shell/main.cpp +++ b/Userland/Shell/main.cpp @@ -128,7 +128,6 @@ int main(int argc, char** argv) } } else if (sid != pid) { if (getpgid(pid) != pid) { - dbgln("We were already in a session with sid={} (we are {}), let's do some gymnastics", sid, pid); if (setpgid(pid, sid) < 0) { auto strerr = strerror(errno); dbgln("couldn't setpgid: {}", strerr); -- cgit v1.2.3