aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2020-03-13 22:48:04 +0000
committerxiphon <xiphon@protonmail.com>2020-03-13 22:48:04 +0000
commit0dbdba876e8e2d47bf2318ad8b41967c3250e6b1 (patch)
tree83b9b13ff92d828b66bdc4a1c8f0cf3e1949b572 /contrib/epee
parentMerge pull request #6248 (diff)
downloadmonero-0dbdba876e8e2d47bf2318ad8b41967c3250e6b1.tar.xz
epee: avoid spamming 'Generating SSL certificate' in the logs
Diffstat (limited to 'contrib/epee')
-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 946499129..60d040196 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)
{