From 077f12b0aeb5463e9a624285ba2915c46a574a4d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 14 May 2015 14:02:21 +0200 Subject: http2: infof length in on_frame_send() --- lib/http2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, -- cgit v1.2.3