From b191f24f0557648f46021979874bbf6aae765245 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 22 Jun 2020 21:21:38 +0200 Subject: [PATCH] LibCore: Remove some debug spam in Local{Server,Socket} --- Libraries/LibCore/LocalServer.cpp | 2 -- Libraries/LibCore/LocalSocket.cpp | 2 -- 2 files changed, 4 deletions(-) diff --git a/Libraries/LibCore/LocalServer.cpp b/Libraries/LibCore/LocalServer.cpp index a8ac87b961..93b11f1f4b 100644 --- a/Libraries/LibCore/LocalServer.cpp +++ b/Libraries/LibCore/LocalServer.cpp @@ -55,8 +55,6 @@ bool LocalServer::take_over_from_system_server() constexpr auto socket_takeover = "SOCKET_TAKEOVER"; if (getenv(socket_takeover)) { - dbg() << "Taking the socket over from SystemServer"; - // Sanity check: it has to be a socket. struct stat stat; int rc = fstat(3, &stat); diff --git a/Libraries/LibCore/LocalSocket.cpp b/Libraries/LibCore/LocalSocket.cpp index 725f5747d6..65a38d8de6 100644 --- a/Libraries/LibCore/LocalSocket.cpp +++ b/Libraries/LibCore/LocalSocket.cpp @@ -78,8 +78,6 @@ RefPtr LocalSocket::take_over_accepted_socket_from_system_server() if (!getenv(socket_takeover)) return nullptr; - dbg() << "Taking the accepted socket over from SystemServer"; - // The SystemServer has passed us the socket as fd 3, // so use that instead of creating our own. constexpr int fd = 3;