Reduced logging

This commit is contained in:
M66B 2021-07-17 19:15:40 +02:00
parent a66c605e33
commit b3e48e417c
1 changed files with 3 additions and 0 deletions

View File

@ -37,6 +37,7 @@ import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.security.KeyStore;
import java.security.cert.CertPathBuilder;
@ -297,6 +298,8 @@ public class Bimi {
Log.i("BIMI valid domain=" + domain);
verified = true;
} catch (MalformedURLException ex) {
Log.i(ex);
} catch (Throwable ex) {
Log.w(new Throwable("BIMI " + domain, ex));
}