diff options
Diffstat (limited to 'modules/http2/h2_session.c')
-rw-r--r-- | modules/http2/h2_session.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/http2/h2_session.c b/modules/http2/h2_session.c index 7c73e23069..7fa0376043 100644 --- a/modules/http2/h2_session.c +++ b/modules/http2/h2_session.c @@ -363,9 +363,11 @@ static int on_frame_recv_cb(nghttp2_session *ng2s, else { ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, session->c1, H2_SSSN_LOG(APLOGNO(03066), session, - "recv FRAME[%s], frames=%ld/%ld (r/s)"), + "recv FRAME[%s], frames=%ld/%ld (r/s), " + "remote.emitted=%d"), buffer, (long)session->frames_received, - (long)session->frames_sent); + (long)session->frames_sent, + (int)session->remote.emitted_count); } } |