1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:48:12 +00:00

Shell: Remove dbgln related to process group IDs

This is insignificant debugging information and will print out during
runs with Lagom.
This commit is contained in:
sin-ack 2021-08-12 19:03:12 +00:00 committed by Andreas Kling
parent 65730f459d
commit c419b1ade6

View file

@ -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);