disabled cipher logging

This commit is contained in:
iNPUTmice 2015-02-09 16:41:13 +01:00
parent c3260d620e
commit af0c979f45
1 changed files with 1 additions and 1 deletions

View File

@ -517,7 +517,7 @@ public class XmppConnection implements Runnable {
final String[] cipherSuites = CryptoHelper.getOrderedCipherSuites(
sslSocket.getSupportedCipherSuites());
Log.d(Config.LOGTAG, "Using ciphers: " + Arrays.toString(cipherSuites));
//Log.d(Config.LOGTAG, "Using ciphers: " + Arrays.toString(cipherSuites));
if (cipherSuites.length > 0) {
sslSocket.setEnabledCipherSuites(cipherSuites);
}