comparison src/http/v2/ngx_http_v2_filter_module.c @ 7108:2bf605c6edf7

HTTP/2: shortened some debug log messages. This ensures slightly more readable debug logs on 80-character-wide terminals.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 14 Sep 2017 19:06:06 +0300
parents 12cadc4669a7
children 61d276dcd493
comparison
equal deleted inserted replaced
7107:d4b031cf32cf 7108:2bf605c6edf7
1267 static ngx_inline ngx_int_t 1267 static ngx_inline ngx_int_t
1268 ngx_http_v2_flow_control(ngx_http_v2_connection_t *h2c, 1268 ngx_http_v2_flow_control(ngx_http_v2_connection_t *h2c,
1269 ngx_http_v2_stream_t *stream) 1269 ngx_http_v2_stream_t *stream)
1270 { 1270 {
1271 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, h2c->connection->log, 0, 1271 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, h2c->connection->log, 0,
1272 "http2:%ui available windows: conn:%uz stream:%z", 1272 "http2:%ui windows: conn:%uz stream:%z",
1273 stream->node->id, h2c->send_window, stream->send_window); 1273 stream->node->id, h2c->send_window, stream->send_window);
1274 1274
1275 if (stream->send_window <= 0) { 1275 if (stream->send_window <= 0) {
1276 stream->exhausted = 1; 1276 stream->exhausted = 1;
1277 return NGX_DECLINED; 1277 return NGX_DECLINED;