diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-08-27 13:26:35 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-08-27 13:26:35 +0000 |
commit | e04b4204a858a7b29579d04d824d50d9d9464045 (patch) | |
tree | e0f2aef31a471a72fe6de0f5afc24ad45bd25474 | |
parent | c48f49f837ebbdca317363b01c483de3ca0d6080 (diff) | |
download | nginx-e04b4204a858a7b29579d04d824d50d9d9464045.tar.gz nginx-e04b4204a858a7b29579d04d824d50d9d9464045.zip |
remove unused debug log
-rw-r--r-- | src/http/ngx_http.c | 9 |
1 files changed, 0 insertions, 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); } |