Skip to content

Commit

Permalink
http2: infof length in on_frame_send()
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed May 18, 2015
1 parent d6f1c74 commit 077f12b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/http2.c
Expand Up @@ -414,7 +414,8 @@ static int on_frame_send(nghttp2_session *session,
struct connectdata *conn = (struct connectdata *)userp;
(void)session;
(void)frame;
DEBUGF(infof(conn->data, "on_frame_send() was called\n"));
DEBUGF(infof(conn->data, "on_frame_send() was called, length = %zd\n",
frame->hd.length));
return 0;
}
static int on_frame_not_send(nghttp2_session *session,
Expand Down

0 comments on commit 077f12b

Please sign in to comment.