remove unused debug log
Igor Sysoev
13 years ago
1242 | 1242 | in_addr->bind = listen->conf.bind; |
1243 | 1243 | in_addr->listen_conf = &listen->conf; |
1244 | 1244 | |
1245 | #if (NGX_DEBUG) | |
1246 | { | |
1247 | u_char text[20]; | |
1248 | ngx_inet_ntop(AF_INET, &in_addr->addr, text, 20); | |
1249 | ngx_log_debug2(NGX_LOG_DEBUG_HTTP, cf->log, 0, "address: %s:%d", | |
1250 | text, in_port->port); | |
1251 | } | |
1252 | #endif | |
1253 | ||
1254 | 1245 | return ngx_http_add_names(cf, cscf, in_addr); |
1255 | 1246 | } |
1256 | 1247 |