From 35b7a443a1af954156ee65d3f9b993cbe3af4376 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 12 Nov 2009 15:50:34 +0000 Subject: [PATCH] do not log error if $r->variable was not found --- src/http/modules/perl/nginx.xs | 3 --- 1 file changed, 3 deletions(-) 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; }