From: Igor Sysoev Date: Thu, 12 Nov 2009 15:50:34 +0000 (+0000) Subject: do not log error if $r->variable was not found X-Git-Tag: release-0.8.25~15 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/postgres_fdw.c?a=commitdiff_plain;h=35b7a443a1af954156ee65d3f9b993cbe3af4376;p=nginx.git do not log error if $r->variable was not found --- diff --git a/src/http/modules/perl/nginx.xs b/src/http/modules/perl/nginx.xs index 8a20c4373..0c2c9b617 100644 --- a/src/http/modules/perl/nginx.xs +++ b/src/http/modules/perl/nginx.xs @@ -902,9 +902,6 @@ variable(r, name, value = NULL) XSRETURN_UNDEF; } - ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, - "variable \"%V\" not found", &var); - XSRETURN_UNDEF; }