aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-09-11 15:52:11 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-09-11 15:52:11 +0000
commitd0df295655ea9e44cca9e4a51f5712a6d2d0fc31 (patch)
tree4f8a49f8af8cf1b4c9200455c3ee6143f7bde3c8
parent316542508b828c787982ee0850dfde9d11238891 (diff)
downloadnginx-d0df295655ea9e44cca9e4a51f5712a6d2d0fc31.tar.gz
nginx-d0df295655ea9e44cca9e4a51f5712a6d2d0fc31.zip
add filename to the log message
-rw-r--r--src/core/ngx_output_chain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ngx_output_chain.c b/src/core/ngx_output_chain.c
index 3d5ae1db5..ecb0f31bf 100644
--- a/src/core/ngx_output_chain.c
+++ b/src/core/ngx_output_chain.c
@@ -505,8 +505,8 @@ ngx_output_chain_copy_buf(ngx_output_chain_ctx_t *ctx)
if (n != size) {
ngx_log_error(NGX_LOG_ALERT, ctx->pool->log, 0,
- ngx_read_file_n " read only %z of %O from file",
- n, size);
+ ngx_read_file_n " read only %z of %O from \"%s\"",
+ n, size, src->file->name.data);
if (n == 0) {
return NGX_ERROR;
}