http2: infof length in on_frame_send()

This commit is contained in:
Daniel Stenberg 2015-05-14 14:02:21 +02:00
Родитель d6f1c74330
Коммит 077f12b0ae
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -414,7 +414,8 @@ static int on_frame_send(nghttp2_session *session,
struct connectdata *conn = (struct connectdata *)userp; struct connectdata *conn = (struct connectdata *)userp;
(void)session; (void)session;
(void)frame; (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; return 0;
} }
static int on_frame_not_send(nghttp2_session *session, static int on_frame_not_send(nghttp2_session *session,