summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/tortls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c
index f0e57e5455..823fbe7a90 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -850,8 +850,8 @@ void _check_no_tls_errors(const char *fname, int line)
{
if (ERR_peek_error() == 0)
return;
- log_fn(LOG_ERR, "Unhandled OpenSSL errors found at %s:%d: ",
+ log_fn(LOG_WARN, "Unhandled OpenSSL errors found at %s:%d: ",
fname, line);
- tls_log_errors(LOG_ERR, NULL);
+ tls_log_errors(LOG_WARN, NULL);
}