I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 4e72e150 authored by zzz's avatar zzz
Browse files

reduce log level of expired certs on android

parent b28628b8
No related branches found
No related tags found
No related merge requests found
......@@ -229,7 +229,12 @@ public class KeyStoreUtil {
try {
cert.checkValidity();
} catch (CertificateExpiredException cee) {
error("Rejecting expired X509 Certificate: " + file.getAbsolutePath(), cee);
String s = "Rejecting expired X509 Certificate: " + file.getAbsolutePath();
// Android often has old system certs
if (SystemVersion.isAndroid())
warn(s, cee);
else
error(s, cee);
return false;
} catch (CertificateNotYetValidException cnyve) {
error("Rejecting X509 Certificate not yet valid: " + file.getAbsolutePath(), cnyve);
......@@ -463,6 +468,11 @@ public class KeyStoreUtil {
log(I2PAppContext.getGlobalContext(), Log.INFO, msg, null);
}
/** @since 0.9.17 */
private static void warn(String msg, Throwable t) {
log(I2PAppContext.getGlobalContext(), Log.WARN, msg, t);
}
private static void error(String msg, Throwable t) {
log(I2PAppContext.getGlobalContext(), Log.ERROR, msg, t);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment