# HG changeset patch # User Igor Sysoev # Date 1142024400 -10800 # Node ID 4ad13ee5ef5e7125a801d919855da698289935dd # Parent cd4e0ec3946a9df6759b274e54ca3ea2b3e3398e nginx 0.3.32 *) Bugfix: the debug logging on startup and reconfiguration time was removed; bug appeared in 0.3.31. diff --git a/CHANGES b/CHANGES --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ + +Changes with nginx 0.3.32 11 Mar 2006 + + *) Bugfix: the debug logging on startup and reconfiguration time was + removed; bug appeared in 0.3.31. + Changes with nginx 0.3.31 10 Mar 2006 diff --git a/CHANGES.ru b/CHANGES.ru --- a/CHANGES.ru +++ b/CHANGES.ru @@ -1,3 +1,9 @@ + +Изменения в nginx 0.3.32 11.03.2006 + + *) Исправление: удаление отладочного логгирования на старте и при + переконфигурации; ошибка появилась в 0.3.31. + Изменения в nginx 0.3.31 10.03.2006 diff --git a/src/core/nginx.h b/src/core/nginx.h --- a/src/core/nginx.h +++ b/src/core/nginx.h @@ -8,7 +8,7 @@ #define _NGINX_H_INCLUDED_ -#define NGINX_VER "nginx/0.3.31" +#define NGINX_VER "nginx/0.3.32" #define NGINX_VAR "NGINX" #define NGX_OLDPID_EXT ".oldbin" diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -580,9 +580,6 @@ ngx_http_block(ngx_conf_t *cf, ngx_comma name = in_addr[a].names.elts; for (s = 0; s < in_addr[a].names.nelts; s++) { - ngx_log_error(NGX_LOG_ALERT, cf->log, 0, - "server name \"%V\"", &name[s].name); - ch = name[s].name.data[0]; if (ch == '*' || ch == '.') { @@ -605,9 +602,6 @@ ngx_http_block(ngx_conf_t *cf, ngx_comma for (s = 0; s < in_addr[a].names.nelts; s++) { - ngx_log_error(NGX_LOG_ALERT, cf->log, 0, - "wildcard server name \"%V\"", &name[s].name); - ch = name[s].name.data[0]; if (ch != '*' && ch != '.') {