mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-17 21:26:04 +00:00
change some log levels back
This commit is contained in:
parent
710a35993d
commit
2abc997af8
@ -77,14 +77,14 @@ namespace data
|
||||
verifier->SetPublicKey (signingKey);
|
||||
}
|
||||
else
|
||||
LogPrint (eLogError, "Family: elliptic curve ", curve, " is not supported");
|
||||
LogPrint (eLogWarning, "Family: elliptic curve ", curve, " is not supported");
|
||||
}
|
||||
EC_KEY_free (ecKey);
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
LogPrint (eLogError, "Family: Certificate key type ", keyType, " is not supported");
|
||||
LogPrint (eLogWarning, "Family: Certificate key type ", keyType, " is not supported");
|
||||
}
|
||||
EVP_PKEY_free (pkey);
|
||||
if (verifier && cn)
|
||||
@ -105,7 +105,7 @@ namespace data
|
||||
int numCertificates = 0;
|
||||
|
||||
if (!i2p::fs::ReadDir(certDir, files)) {
|
||||
LogPrint(eLogError, "Family: Can't load family certificates from ", certDir);
|
||||
LogPrint(eLogWarning, "Family: Can't load family certificates from ", certDir);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -185,7 +185,7 @@ namespace data
|
||||
delete[] b64;
|
||||
}
|
||||
else
|
||||
LogPrint (eLogError, "Family: elliptic curve ", curve, " is not supported");
|
||||
LogPrint (eLogWarning, "Family: elliptic curve ", curve, " is not supported");
|
||||
}
|
||||
}
|
||||
SSL_free (ssl);
|
||||
|
Loading…
Reference in New Issue
Block a user