From: Daniel Stenberg Date: Thu, 14 May 2015 12:02:21 +0000 (+0200) Subject: http2: infof length in on_frame_send() X-Git-Tag: curl-7_43_0~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=077f12b0aeb5463e9a624285ba2915c46a574a4d;p=curl http2: infof length in on_frame_send() --- diff --git a/lib/http2.c b/lib/http2.c index c6e90e1dd..4343e125b 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -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,