diff options
author | Andreas Kling <kling@serenityos.org> | 2020-06-22 21:21:38 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-22 21:21:38 +0200 |
commit | b191f24f0557648f46021979874bbf6aae765245 (patch) | |
tree | 32a7fd21e84f194d8214d5df8ef331c5d4b2653b /Libraries/LibCore | |
parent | 32dfde746abc62d2216e5e5e2d0df08e33c02ff0 (diff) | |
download | serenity-b191f24f0557648f46021979874bbf6aae765245.zip |
LibCore: Remove some debug spam in Local{Server,Socket}
Diffstat (limited to 'Libraries/LibCore')
-rw-r--r-- | Libraries/LibCore/LocalServer.cpp | 2 | ||||
-rw-r--r-- | Libraries/LibCore/LocalSocket.cpp | 2 |
2 files changed, 0 insertions, 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> 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; |