1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:07:45 +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; return false;
} }
if (nread == 0) { if (nread == 0) {
dbg() << "EOF on IPC fd";
if (bytes.is_empty()) { if (bytes.is_empty()) {
deferred_invoke([this](auto&) { deferred_invoke([this](auto&) { die(); });
dbg() << *this << " Disconnected";
die();
});
} }
return false; return false;
} }