Skip to content

Commit

Permalink
Shell: Remove dbgln related to process group IDs
Browse files Browse the repository at this point in the history
This is insignificant debugging information and will print out during
runs with Lagom.
  • Loading branch information
sin-ack authored and awesomekling committed Aug 12, 2021
1 parent 65730f4 commit c419b1a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Userland/Shell/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c419b1a

Please sign in to comment.