From b273b31c7de6ad2d41e6498e34792d8a34b19feb Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 22 Jun 2020 21:39:44 +0200 Subject: [PATCH] LibIPC: Silence some debug spam --- Libraries/LibIPC/ClientConnection.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Libraries/LibIPC/ClientConnection.h b/Libraries/LibIPC/ClientConnection.h index f3675c1ff4..ed7a76ee31 100644 --- a/Libraries/LibIPC/ClientConnection.h +++ b/Libraries/LibIPC/ClientConnection.h @@ -208,8 +208,10 @@ protected: void event(Core::Event& event) override { if (event.type() == Event::Disconnected) { +#ifdef IPC_DEBUG int client_id = static_cast(event).client_id(); dbg() << *this << ": Client disconnected: " << client_id; +#endif die(); return; }