# HG changeset patch # User Igor Sysoev # Date 1219843595 0 # Node ID 7f27856d000df3ea43af1194853998f7ea95822e # Parent 31fda45f696f4b779e1fe0f1c03909fc09ddf138 remove unused debug log 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 @@ -1243,15 +1243,6 @@ ngx_http_add_address(ngx_conf_t *cf, ngx 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); }