comparison src/http/modules/ngx_http_chunked_filter_module.c @ 6480:f01ab2dbcfdc

Fixed logging.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 31 Mar 2016 02:33:57 +0300
parents b1858fc47e3b
children 1b068a4e82d8
comparison
equal deleted inserted replaced
6479:dc92298b1852 6480:f01ab2dbcfdc
119 size = 0; 119 size = 0;
120 cl = in; 120 cl = in;
121 121
122 for ( ;; ) { 122 for ( ;; ) {
123 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 123 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
124 "http chunk: %d", ngx_buf_size(cl->buf)); 124 "http chunk: %O", ngx_buf_size(cl->buf));
125 125
126 size += ngx_buf_size(cl->buf); 126 size += ngx_buf_size(cl->buf);
127 127
128 if (cl->buf->flush 128 if (cl->buf->flush
129 || cl->buf->sync 129 || cl->buf->sync