diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-01-16 20:43:36 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-01-16 20:43:36 +0000 |
commit | 66af04752f15afee4a233fb07acab5181e1863c5 (patch) | |
tree | 1ab17bc8f740616b9a2384039e2e7f1d55af1268 /src/http/modules/ngx_http_fastcgi_module.c | |
parent | 03c9cb7afc4a8004b8e29b1018f288c13d5dd0e8 (diff) | |
download | nginx-66af04752f15afee4a233fb07acab5181e1863c5.tar.gz nginx-66af04752f15afee4a233fb07acab5181e1863c5.zip |
fix debug logging
Diffstat (limited to 'src/http/modules/ngx_http_fastcgi_module.c')
-rw-r--r-- | src/http/modules/ngx_http_fastcgi_module.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c index 3791b3e14..f4c0caf02 100644 --- a/src/http/modules/ngx_http_fastcgi_module.c +++ b/src/http/modules/ngx_http_fastcgi_module.c @@ -1308,11 +1308,8 @@ ngx_http_fastcgi_input_filter(ngx_event_pipe_t *p, ngx_buf_t *buf) /* STUB */ b->num = buf->num; - ngx_log_debug1(NGX_LOG_DEBUG_EVENT, p->log, 0, "input buf #%d", b->num); - ngx_log_debug2(NGX_LOG_DEBUG_EVENT, p->log, 0, - "input buf %p %z", b->pos, b->last - b->pos); - + "input buf #%d %p", b->num, b->pos); if (f->pos + f->length < f->last) { @@ -1354,7 +1351,7 @@ ngx_http_fastcgi_input_filter(ngx_event_pipe_t *p, ngx_buf_t *buf) b->last_shadow = 1; ngx_log_debug2(NGX_LOG_DEBUG_EVENT, p->log, 0, - "input buf last %p %z", b->pos, b->last - b->pos); + "input buf %p %z", b->pos, b->last - b->pos); return NGX_OK; } |