comparison src/http/v2/ngx_http_v2_filter_module.c @ 7241:190591ab0d76

HTTP/2: improved frame info debugging.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 19 Mar 2018 21:32:15 +0300
parents c2a0a838c40f
children 8e6bb4e6045f
comparison
equal deleted inserted replaced
7240:413189f03c8d 7241:190591ab0d76
1167 1167
1168 b->last_buf = fin; 1168 b->last_buf = fin;
1169 cl->next = NULL; 1169 cl->next = NULL;
1170 frame->last = cl; 1170 frame->last = cl;
1171 1171
1172 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 1172 ngx_log_debug4(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
1173 "http2:%ui create HEADERS frame %p: len:%uz", 1173 "http2:%ui create HEADERS frame %p: len:%uz fin:%ui",
1174 stream->node->id, frame, frame->length); 1174 stream->node->id, frame, frame->length, fin);
1175 1175
1176 return frame; 1176 return frame;
1177 } 1177 }
1178 } 1178 }
1179 1179