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;