Persist log of certificate transparency

This commit is contained in:
M66B
2023-12-30 16:39:48 +01:00
parent 08d829565c
commit 09479f8eb0

View File

@@ -50,7 +50,7 @@ public class SSLHelper {
CTLogger logger = new CTLogger() {
@Override
public void log(@NonNull String host, @NonNull VerificationResult result) {
Log.w("Transparency: host=" + host + " result=" + result);
Log.persist(EntityLog.Type.Network, "Transparency: " + host + " " + result);
}
};