From 5ebbdf3f3bf5dc9142d2126b188cf6fc5f9d533e Mon Sep 17 00:00:00 2001 From: Thulinma Date: Thu, 23 Nov 2017 10:20:39 +0100 Subject: [PATCH] Changed SSL handshake error to level MEDIUM instead of FAIL --- src/output/output_https.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/output_https.cpp b/src/output/output_https.cpp index 34ca3dd2..61600207 100644 --- a/src/output/output_https.cpp +++ b/src/output/output_https.cpp @@ -53,7 +53,7 @@ namespace Mist{ // do the SSL handshake while ((ret = mbedtls_ssl_handshake(&ssl)) != 0){ if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE){ - FAIL_MSG("Could not handshake, SSL error: %d", ret); + MEDIUM_MSG("Could not handshake, SSL error: %d", ret); C.close(); return; }else{