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
Notes: sideshowbarker 2024-07-18 07:03:25 +09:00

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