Reduce logging

This commit is contained in:
M66B 2021-08-24 08:28:25 +02:00
parent a8d50746eb
commit 9ba0176142
1 changed files with 3 additions and 1 deletions

View File

@ -479,8 +479,10 @@ public class ContactInfo {
Log.i(ex);
else {
if (ex instanceof FileNotFoundException ||
ex instanceof CertificateException ||
ex instanceof CertPathValidatorException ||
ex.getCause() instanceof CertPathValidatorException)
ex.getCause() instanceof CertPathValidatorException ||
ex.getCause() instanceof CertificateException)
Log.i(ex);
else
Log.e(ex);