diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-04-04 13:16:55 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-04-04 13:16:55 -0500 |
commit | 00ede0038d98b6b25935830758c5e65d27c0b669 (patch) | |
tree | 253ad2e09d6a60a53e34dd6e4f848cdd6b46388f /contrib | |
parent | Merge pull request #6386 (diff) | |
parent | epee: avoid spamming 'Generating SSL certificate' in the logs (diff) | |
download | monero-00ede0038d98b6b25935830758c5e65d27c0b669.tar.xz |
Merge pull request #6387
0dbdba8 epee: avoid spamming 'Generating SSL certificate' in the logs (xiphon)
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/epee/src/net_ssl.cpp | 4 |
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) { |