Reduced logging

pull/206/head
M66B 4 years ago
parent fa739dd725
commit 12fe908e66

@ -481,7 +481,9 @@ public class ContactInfo {
ex instanceof CertificateException ||
ex instanceof CertPathValidatorException ||
ex.getCause() instanceof CertPathValidatorException ||
ex.getCause() instanceof CertificateException)
ex.getCause() instanceof CertificateException ||
(ex instanceof SSLException &&
"Unable to parse TLS packet header".equals(ex.getMessage())))
Log.i(ex);
else
Log.e(ex);

Loading…
Cancel
Save