diff options
author | Andreas Kling <kling@serenityos.org> | 2021-07-22 13:51:28 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-22 14:20:05 +0200 |
commit | d79d768010ef54e584501c655b543a3ea85925a8 (patch) | |
tree | 8d91f117f300234fefe3a9ff01924fa5a160308d | |
parent | 9122967d5f3531582b43ea390c02202bdd9609b6 (diff) | |
download | serenity-d79d768010ef54e584501c655b543a3ea85925a8.zip |
LaunchServer: Remove debug spam about incoming connections
-rw-r--r-- | Userland/Services/LaunchServer/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Services/LaunchServer/main.cpp b/Userland/Services/LaunchServer/main.cpp index bb49b1622e..0958d13b29 100644 --- a/Userland/Services/LaunchServer/main.cpp +++ b/Userland/Services/LaunchServer/main.cpp @@ -37,7 +37,6 @@ int main([[maybe_unused]] int argc, [[maybe_unused]] char** argv) } static int s_next_client_id = 0; int client_id = ++s_next_client_id; - dbgln("Received connection"); IPC::new_client_connection<LaunchServer::ClientConnection>(client_socket.release_nonnull(), client_id); }; |