remove logs

This commit is contained in:
Arnaud Vergnet 2020-12-16 12:06:29 +01:00
parent c50a2fb251
commit 46565951e8

View file

@ -54,9 +54,7 @@ public class ConnectionListener {
try {
server = new ServerSocket(TCP_PORT);
while (!shouldStop) {
System.out.println("Accepting...");
Socket clientSocket = server.accept();
System.out.println("New connection from " + clientSocket.getRemoteSocketAddress());
callback.onNewConnection(clientSocket);
}
} catch (IOException e) {