comparison src/http/ngx_http.c @ 2218:7f27856d000d

remove unused debug log
author Igor Sysoev <igor@sysoev.ru>
date Wed, 27 Aug 2008 13:26:35 +0000
parents a69886fc2864
children fb84e3e95841
comparison
equal deleted inserted replaced
2217:31fda45f696f 2218:7f27856d000d
1241 in_addr->core_srv_conf = cscf; 1241 in_addr->core_srv_conf = cscf;
1242 in_addr->default_server = listen->conf.default_server; 1242 in_addr->default_server = listen->conf.default_server;
1243 in_addr->bind = listen->conf.bind; 1243 in_addr->bind = listen->conf.bind;
1244 in_addr->listen_conf = &listen->conf; 1244 in_addr->listen_conf = &listen->conf;
1245 1245
1246 #if (NGX_DEBUG)
1247 {
1248 u_char text[20];
1249 ngx_inet_ntop(AF_INET, &in_addr->addr, text, 20);
1250 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, cf->log, 0, "address: %s:%d",
1251 text, in_port->port);
1252 }
1253 #endif
1254
1255 return ngx_http_add_names(cf, cscf, in_addr); 1246 return ngx_http_add_names(cf, cscf, in_addr);
1256 } 1247 }
1257 1248
1258 1249
1259 /* 1250 /*