From e04b4204a858a7b29579d04d824d50d9d9464045 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 27 Aug 2008 13:26:35 +0000 Subject: [PATCH] remove unused debug log --- src/http/ngx_http.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c index 9a826b011..4cea28273 100644 --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -1243,15 +1243,6 @@ ngx_http_add_address(ngx_conf_t *cf, ngx_http_core_srv_conf_t *cscf, in_addr->bind = listen->conf.bind; in_addr->listen_conf = &listen->conf; -#if (NGX_DEBUG) - { - u_char text[20]; - ngx_inet_ntop(AF_INET, &in_addr->addr, text, 20); - ngx_log_debug2(NGX_LOG_DEBUG_HTTP, cf->log, 0, "address: %s:%d", - text, in_port->port); - } -#endif - return ngx_http_add_names(cf, cscf, in_addr); }