summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsin-ack <sin-ack@users.noreply.github.com>2021-08-12 19:03:12 +0000
committerAndreas Kling <kling@serenityos.org>2021-08-12 22:42:50 +0200
commitc419b1ade6f4fb1e58e3eba814823433eee0448f (patch)
tree288553910000bd8b11ba5d72f04c45bea9591bcc
parent65730f459df8acc9bcd64a53b443cf3f8989d509 (diff)
downloadserenity-c419b1ade6f4fb1e58e3eba814823433eee0448f.zip
Shell: Remove dbgln related to process group IDs
This is insignificant debugging information and will print out during runs with Lagom.
-rw-r--r--Userland/Shell/main.cpp1
1 files changed, 0 insertions, 1 deletions
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);