diff options
| author | Maxim Dounin <mdounin@mdounin.ru> | 2014-06-26 02:19:55 +0400 |
|---|---|---|
| committer | Maxim Dounin <mdounin@mdounin.ru> | 2014-06-26 02:19:55 +0400 |
| commit | 05dfc054f0d90ae68476272c62be6e67aab21e20 (patch) | |
| tree | 2bfc0055301965c9a96f7e3c23730984110a662d | |
| parent | 02e39a3ecb27c015662391eedc51dc1d7db27239 (diff) | |
| download | nginx-05dfc054f0d90ae68476272c62be6e67aab21e20.tar.gz nginx-05dfc054f0d90ae68476272c62be6e67aab21e20.tar.bz2 | |
Not modified filter: debug log format fixed.
| -rw-r--r-- | src/http/modules/ngx_http_not_modified_filter_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_not_modified_filter_module.c b/src/http/modules/ngx_http_not_modified_filter_module.c index 7f1ab6236..66477b0ca 100644 --- a/src/http/modules/ngx_http_not_modified_filter_module.c +++ b/src/http/modules/ngx_http_not_modified_filter_module.c @@ -118,7 +118,7 @@ ngx_http_test_if_unmodified(ngx_http_request_t *r) r->headers_in.if_unmodified_since->value.len); ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "http iums:%d lm:%d", iums, r->headers_out.last_modified_time); + "http iums:%T lm:%T", iums, r->headers_out.last_modified_time); if (iums >= r->headers_out.last_modified_time) { return 1; @@ -144,7 +144,7 @@ ngx_http_test_if_modified(ngx_http_request_t *r) r->headers_in.if_modified_since->value.len); ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "http ims:%d lm:%d", ims, r->headers_out.last_modified_time); + "http ims:%T lm:%T", ims, r->headers_out.last_modified_time); if (ims == r->headers_out.last_modified_time) { return 0; |
