mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +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;
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue