aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-06-03 19:56:27 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-06-03 19:56:27 +0000
commit70c1d0f1609d762b1d5acbc8d66f73a599634f57 (patch)
tree5a9ce8adb215146565951d82257c099c90f52921 /src
parentb1c6c4323eb442028e43054b7c8203625dfeb30c (diff)
downloadnginx-70c1d0f1609d762b1d5acbc8d66f73a599634f57.tar.gz
nginx-70c1d0f1609d762b1d5acbc8d66f73a599634f57.zip
add debug logging
Diffstat (limited to 'src')
-rw-r--r--src/core/ngx_output_chain.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/ngx_output_chain.c b/src/core/ngx_output_chain.c
index cc635c9a9..554fe1b15 100644
--- a/src/core/ngx_output_chain.c
+++ b/src/core/ngx_output_chain.c
@@ -444,8 +444,9 @@ ngx_chain_writer(void *data, ngx_chain_t *in)
size += ngx_buf_size(in->buf);
- ngx_log_debug1(NGX_LOG_DEBUG_CORE, ctx->connection->log, 0,
- "chain writer buf size: %uO", ngx_buf_size(in->buf));
+ ngx_log_debug2(NGX_LOG_DEBUG_CORE, ctx->connection->log, 0,
+ "chain writer buf fl:%d s:%uO",
+ in->buf->flush, ngx_buf_size(in->buf));
cl = ngx_alloc_chain_link(ctx->pool);
if (cl == NULL) {