comparison src/http/modules/ngx_http_fastcgi_module.c @ 1678:d24280472a9f

log how big fastcgi record
author Igor Sysoev <igor@sysoev.ru>
date Sat, 01 Dec 2007 14:23:53 +0000
parents 13f8dec720b5
children 70202cd85645
comparison
equal deleted inserted replaced
1677:c997912a8f0b 1678:d24280472a9f
551 } 551 }
552 552
553 553
554 if (len > 65535) { 554 if (len > 65535) {
555 ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0, 555 ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
556 "fastcgi: the request record is too big"); 556 "fastcgi request record is too big: %uz", len);
557 return NGX_ERROR; 557 return NGX_ERROR;
558 } 558 }
559 559
560 560
561 padding = 8 - len % 8; 561 padding = 8 - len % 8;