diff options
author | sin-ack <sin-ack@users.noreply.github.com> | 2021-08-12 19:03:12 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-12 22:42:50 +0200 |
commit | c419b1ade6f4fb1e58e3eba814823433eee0448f (patch) | |
tree | 288553910000bd8b11ba5d72f04c45bea9591bcc /Userland/Shell/main.cpp | |
parent | 65730f459df8acc9bcd64a53b443cf3f8989d509 (diff) | |
download | serenity-c419b1ade6f4fb1e58e3eba814823433eee0448f.zip |
Shell: Remove dbgln related to process group IDs
This is insignificant debugging information and will print out during
runs with Lagom.
Diffstat (limited to 'Userland/Shell/main.cpp')
-rw-r--r-- | Userland/Shell/main.cpp | 1 |
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); |