remove uneeded log
[nikiroo-utils.git] / src / be / nikiroo / utils / serial / server / Server.java
index 8e83d416fe7a653e5b008e2f9daf747a35ab7db1..2f23c288388bbc82315672dc3e375c39ec3622cc 100644 (file)
@@ -215,14 +215,6 @@ abstract class Server implements Runnable {
                        tracer.trace(name + ": server starting on port " + port + " ("
                                        + (ssl ? "SSL" : "plain text") + ")");
 
-                       String ciphers = "";
-                       for (String cipher : getAnonCiphers()) {
-                               if (!ciphers.isEmpty()) {
-                                       ciphers += ", ";
-                               }
-                               ciphers += cipher;
-                       }
-
                        while (started && !exiting) {
                                count(1);
                                final Socket s = ss.accept();