diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-11-25 23:27:34 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-11-25 23:27:34 +0000 |
commit | ac6e1c1254a42954409f7fa8feeaaa8a040c8bd9 (patch) | |
tree | cc1bbfa7eea578e33dd25bac3826f3318f81913b | |
parent | fab5acdd281c87bafded9f4fa97e494ce944098c (diff) | |
download | nginx-ac6e1c1254a42954409f7fa8feeaaa8a040c8bd9.tar.gz nginx-ac6e1c1254a42954409f7fa8feeaaa8a040c8bd9.zip |
add debug logging
-rw-r--r-- | src/http/modules/perl/ngx_http_perl_module.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/http/modules/perl/ngx_http_perl_module.c b/src/http/modules/perl/ngx_http_perl_module.c index a5f27dc9f..95483ab5e 100644 --- a/src/http/modules/perl/ngx_http_perl_module.c +++ b/src/http/modules/perl/ngx_http_perl_module.c @@ -363,6 +363,9 @@ ngx_http_perl_variable(ngx_http_request_t *r, ngx_http_variable_value_t *v, ctx->filename.data = NULL; ctx->redirect_uri.len = 0; + ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, + "perl variable done"); + return rc; } @@ -443,6 +446,8 @@ ngx_http_perl_ssi(ngx_http_request_t *r, ngx_http_ssi_ctx_t *ssi_ctx, ctx->redirect_uri.len = 0; ctx->ssi = NULL; + ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "perl ssi done"); + return rc; } |