log how big fastcgi record

This commit is contained in:
Igor Sysoev 2007-12-01 14:23:53 +00:00
parent 58ea0c1aad
commit 0827c83dfb

View File

@ -553,7 +553,7 @@ ngx_http_fastcgi_create_request(ngx_http_request_t *r)
if (len > 65535) { if (len > 65535) {
ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0, ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
"fastcgi: the request record is too big"); "fastcgi request record is too big: %uz", len);
return NGX_ERROR; return NGX_ERROR;
} }