소스 검색

LaunchServer: Remove debug spam about incoming connections

Andreas Kling 4 년 전
부모
커밋
d79d768010
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      Userland/Services/LaunchServer/main.cpp

+ 0 - 1
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);
     };