Mute debug log messages for net_send() that were incorrectly classified as error messages.

This commit is contained in:
Jan Vidar Krey 2018-01-15 17:00:56 +00:00
parent 90d05c9a19
commit 11538d6909
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ ssize_t net_ssl_send(struct net_connection* con, const void* buf, size_t len)
{
struct net_ssl_openssl* handle = get_handle(con);
LOG_ERROR("net_ssl_send(), state=%d", (int) handle->state);
LOG_TRACE("net_ssl_send(), state=%d", (int) handle->state);
if (handle->state == tls_st_error)
return -2;