remove uneeded log
[nikiroo-utils.git] / src / be / nikiroo / utils / serial / server / Server.java
index 2dbc3bc2deb23739a35e73357f782bd9b611b8fe..2f23c288388bbc82315672dc3e375c39ec3622cc 100644 (file)
@@ -215,15 +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;
-                       }
-                       tracer.trace("Available SSL ciphers: " + ciphers);
-
                        while (started && !exiting) {
                                count(1);
                                final Socket s = ss.accept();