mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
LibIPC: Remove debug spam on disconnection
This commit is contained in:
parent
d9e39cb82d
commit
54116115a8
Notes:
sideshowbarker
2024-07-19 02:43:47 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/54116115a84
1 changed files with 1 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue