We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dae448 commit 666fa2dCopy full SHA for 666fa2d
library/ssl_msg.c
@@ -221,7 +221,7 @@ int mbedtls_ssl_check_record(mbedtls_ssl_context const *ssl,
221
size_t buflen)
222
{
223
int ret = 0;
224
- MBEDTLS_SSL_DEBUG_MSG(1, ("=> mbedtls_ssl_check_record"));
+ MBEDTLS_SSL_DEBUG_MSG(3, ("=> mbedtls_ssl_check_record"));
225
MBEDTLS_SSL_DEBUG_BUF(3, "record buffer", buf, buflen);
226
227
/* We don't support record checking in TLS because
@@ -263,7 +263,7 @@ int mbedtls_ssl_check_record(mbedtls_ssl_context const *ssl,
263
ret = MBEDTLS_ERR_SSL_UNEXPECTED_RECORD;
264
}
265
266
- MBEDTLS_SSL_DEBUG_MSG(1, ("<= mbedtls_ssl_check_record"));
+ MBEDTLS_SSL_DEBUG_MSG(3, ("<= mbedtls_ssl_check_record"));
267
return ret;
268
269
0 commit comments