diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-12-01 14:23:53 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-12-01 14:23:53 +0000 |
commit | 0827c83dfb811881890d738aa4d9107624bb9699 (patch) | |
tree | b3c17d4ff633220b2db5a61981bd98f40b21fd10 /src | |
parent | 58ea0c1aad286e5ac876be29bb61bd44afd972df (diff) | |
download | nginx-0827c83dfb811881890d738aa4d9107624bb9699.tar.gz nginx-0827c83dfb811881890d738aa4d9107624bb9699.zip |
log how big fastcgi record
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_fastcgi_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c index 36c59ce4e..5a15fc1e2 100644 --- a/src/http/modules/ngx_http_fastcgi_module.c +++ b/src/http/modules/ngx_http_fastcgi_module.c @@ -553,7 +553,7 @@ ngx_http_fastcgi_create_request(ngx_http_request_t *r) if (len > 65535) { 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; } |