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

Fixed logging.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 31 Mar 2016 02:33:57 +0300
parents 2cd019520210
children 6136a51f9c21
comparison
equal deleted inserted replaced
6479:dc92298b1852 6480:f01ab2dbcfdc
205 } 205 }
206 206
207 if_range_time = ngx_parse_http_time(if_range->data, if_range->len); 207 if_range_time = ngx_parse_http_time(if_range->data, if_range->len);
208 208
209 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 209 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
210 "http ir:%d lm:%d", 210 "http ir:%T lm:%T",
211 if_range_time, r->headers_out.last_modified_time); 211 if_range_time, r->headers_out.last_modified_time);
212 212
213 if (if_range_time != r->headers_out.last_modified_time) { 213 if (if_range_time != r->headers_out.last_modified_time) {
214 goto next_filter; 214 goto next_filter;
215 } 215 }