[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] don"t log info when we asked for log warn
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/src/or
Modified Files:
rendservice.c
Log Message:
don't log info when we asked for log warn
Index: rendservice.c
===================================================================
RCS file: /home/or/cvsroot/src/or/rendservice.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- rendservice.c 8 Apr 2004 01:54:02 -0000 1.39
+++ rendservice.c 8 Apr 2004 01:59:31 -0000 1.40
@@ -93,11 +93,11 @@
} else {
smartlist_set_capacity(service->ports, -1);
smartlist_add(rend_service_list, service);
- log_fn(LOG_INFO,"Configuring service with directory %s",service->directory);
+ log_fn(LOG_DEBUG,"Configuring service with directory %s",service->directory);
for (i = 0; i < smartlist_len(service->ports); ++i) {
p = smartlist_get(service->ports, i);
addr.s_addr = htonl(p->real_address);
- log_fn(LOG_INFO,"Service maps port %d to %s:%d",
+ log_fn(LOG_DEBUG,"Service maps port %d to %s:%d",
p->virtual_port, inet_ntoa(addr), p->real_port);
}
}