1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:07:35 +00:00

LibIPC: Remove debug spam on disconnection

This commit is contained in:
Andreas Kling 2020-09-12 12:53:08 +02:00
parent d9e39cb82d
commit 54116115a8

View file

@ -163,12 +163,8 @@ protected:
return false;
}
if (nread == 0) {
dbg() << "EOF on IPC fd";
if (bytes.is_empty()) {
deferred_invoke([this](auto&) {
dbg() << *this << " Disconnected";
die();
});
deferred_invoke([this](auto&) { die(); });
}
return false;
}