There are lots of calls like RSAClientKeyExchangeMessage ckem = new RSAClientKeyExchangeMessage(shc, message); if (SSLLogger.isOn && SSLLogger.isOn("ssl,handshake")) { SSLLogger.fine( "Consuming RSA ClientKeyExchange handshake message", ckem); }
which finally calls to String formatted = SSLSimpleFormatter.formatParameters(params); logger.log(level, msg, formatted); Now that msg contains no placeholder likes "{0}", nothing on temporary will be shown. Am I understanding this correctly? Thanks Max