Skip to content

Commit

Permalink
nghttp2: debug message instead of error on peer disconnect
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Apr 12, 2024
1 parent 11c5ed6 commit a8481f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/nghttp2/nghttp2_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ static void delete_http2_session_data(http2_session_data *session_data)
{
http2_stream_data *stream_data;
SSL *ssl = bufferevent_openssl_get_ssl(session_data->bev);
LM_ERR("%s disconnected\n", session_data->client_addr);
LM_DBG("remote peer %s disconnected\n", session_data->client_addr);
if(ssl) {
SSL_shutdown(ssl);
}
Expand Down

0 comments on commit a8481f5

Please sign in to comment.