aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-04-04 13:16:55 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-04-04 13:16:55 -0500
commit00ede0038d98b6b25935830758c5e65d27c0b669 (patch)
tree253ad2e09d6a60a53e34dd6e4f848cdd6b46388f
parentee06f56619d7652a62100cce5e3205e682ade72a (diff)
parent0dbdba876e8e2d47bf2318ad8b41967c3250e6b1 (diff)
downloadmonzero-core-00ede0038d98b6b25935830758c5e65d27c0b669.tar.gz
monzero-core-00ede0038d98b6b25935830758c5e65d27c0b669.tar.xz
monzero-core-00ede0038d98b6b25935830758c5e65d27c0b669.zip
Merge pull request #6387
0dbdba8 epee: avoid spamming 'Generating SSL certificate' in the logs (xiphon)
-rw-r--r--contrib/epee/src/net_ssl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/epee/src/net_ssl.cpp b/contrib/epee/src/net_ssl.cpp
index d7bb62049..2cf9ea2b6 100644
--- a/contrib/epee/src/net_ssl.cpp
+++ b/contrib/epee/src/net_ssl.cpp
@@ -128,7 +128,7 @@ namespace net_utils
// https://stackoverflow.com/questions/256405/programmatically-create-x509-certificate-using-openssl
bool create_rsa_ssl_certificate(EVP_PKEY *&pkey, X509 *&cert)
{
- MGINFO("Generating SSL certificate");
+ MINFO("Generating SSL certificate");
pkey = EVP_PKEY_new();
if (!pkey)
{
@@ -198,7 +198,7 @@ bool create_rsa_ssl_certificate(EVP_PKEY *&pkey, X509 *&cert)
bool create_ec_ssl_certificate(EVP_PKEY *&pkey, X509 *&cert, int type)
{
- MGINFO("Generating SSL certificate");
+ MINFO("Generating SSL certificate");
pkey = EVP_PKEY_new();
if (!pkey)
{