diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-03-20 16:50:53 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-03-20 16:50:53 +0000 |
commit | c7ce3a99bc8f21a89370f06b0aff8cdbcab88765 (patch) | |
tree | 40915ae29de5a78c052bdfc7241bdfbc323a4c0d | |
parent | e018a9c6efbfc99fcc8a9e31c09f45508e762b95 (diff) | |
download | nginx-c7ce3a99bc8f21a89370f06b0aff8cdbcab88765.tar.gz |
add full path debug log in try_files
-rw-r--r-- | src/http/ngx_http_core_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index ca9bc4f81..05c866128 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -1134,8 +1134,8 @@ ngx_http_core_try_files_phase(ngx_http_request_t *r, tf++; - ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "try to use file: \"%s\"", name); + ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, + "try to use file: \"%s\" \"%s\"", name, path.data); if (tf->lengths == NULL && tf->name.len == 0) { |