aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-05-14 14:02:21 +0200
committerDaniel Stenberg <daniel@haxx.se>2015-05-18 09:33:48 +0200
commit077f12b0aeb5463e9a624285ba2915c46a574a4d (patch)
tree3b7fd5a23a2efb59cf9e2fcb888a80fb9d2a96a5 /lib
parentd6f1c74330818325bd244e09150e43c997576ba7 (diff)
http2: infof length in on_frame_send()
Diffstat (limited to 'lib')
-rw-r--r--lib/http2.c3
1 files changed, 2 insertions, 1 deletions
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,