Reduced logging

This commit is contained in:
M66B 2022-05-11 14:36:29 +02:00
parent ce7175a3c4
commit 41a19b24c1
1 changed files with 3 additions and 1 deletions

View File

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