mbedtls: log if we are using it
diff --git a/lib/ssl.c b/lib/ssl.c
index 326ef2c..fd5954c 100644
--- a/lib/ssl.c
+++ b/lib/ssl.c
@@ -304,9 +304,13 @@
 #if defined(LWS_USE_BORINGSSL)
 	lwsl_notice(" Compiled with BoringSSL support\n");
 #else
+#if defined(LWS_USE_MBEDTLS)
+	lwsl_notice(" Compiled with MbedTLS support\n");
+#else
 	lwsl_notice(" Compiled with OpenSSL support\n");
 #endif
 #endif
+#endif
 	if (!lws_check_opt(info->options, LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT)) {
 		lwsl_notice(" SSL disabled: no LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT\n");
 		return 0;