--- src/core/ngx_cycle.c.orig 2010-08-22 20:30:35.000000000 +0300 +++ src/core/ngx_cycle.c 2010-08-22 20:47:24.000000000 +0300 @@ -23,6 +23,7 @@ static ngx_pool_t *ngx_temp_pool; static ngx_event_t ngx_cleaner_event; +ngx_uint_t ngx_quiet_mode; ngx_uint_t ngx_test_config; #if (NGX_THREADS) @@ -267,8 +268,10 @@ } if (ngx_test_config) { - ngx_log_stderr(0, "the configuration file %s syntax is ok", - cycle->conf_file.data); + if (!ngx_quiet_mode) { + ngx_log_stderr(0, "the configuration file %s syntax is ok", + cycle->conf_file.data); + } } for (i = 0; ngx_modules[i]; i++) {