diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-04-15 13:46:52 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-04-15 13:46:52 +0000 |
commit | 0f50f090224d2ef526b35b103205b37250872d97 (patch) | |
tree | 4eace324a6815118d49c4f56149aaab95b1e13a7 | |
parent | 9bd1010164eb288e750e56a44b0ca121951e0916 (diff) | |
download | nginx-0f50f090224d2ef526b35b103205b37250872d97.tar.gz nginx-0f50f090224d2ef526b35b103205b37250872d97.zip |
fix debug logging
-rw-r--r-- | src/http/ngx_http_header_filter_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_header_filter_module.c b/src/http/ngx_http_header_filter_module.c index e8d1ff10a..21ee3bbd2 100644 --- a/src/http/ngx_http_header_filter_module.c +++ b/src/http/ngx_http_header_filter_module.c @@ -586,7 +586,7 @@ ngx_http_header_filter(ngx_http_request_t *r) } ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "%*s\n", (size_t) (b->last - b->pos), b->pos); + "%*s", (size_t) (b->last - b->pos), b->pos); /* the end of HTTP header */ *b->last++ = CR; *b->last++ = LF; |