From: Igor Sysoev Date: Sun, 3 Jun 2007 19:56:27 +0000 (+0000) Subject: add debug logging X-Git-Tag: release-0.5.23~3 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=70c1d0f1609d762b1d5acbc8d66f73a599634f57;p=nginx.git add debug logging --- 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) {