[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] stop notifying people about dns worker spawning and culling
Update of /home2/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/cvs/tor/src/or
Modified Files:
dns.c
Log Message:
stop notifying people about dns worker spawning and culling
it just freaks them out
Index: dns.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/dns.c,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -d -r1.166 -r1.167
--- dns.c 2 Sep 2005 18:53:31 -0000 1.166
+++ dns.c 9 Sep 2005 02:03:31 -0000 1.167
@@ -919,7 +919,7 @@
while (num_dnsworkers > num_dnsworkers_busy+MAX_IDLE_DNSWORKERS) {
/* too many idle? */
/* cull excess workers */
- log_fn(LOG_NOTICE,"%d of %d dnsworkers are idle. Killing one.",
+ log_fn(LOG_INFO,"%d of %d dnsworkers are idle. Killing one.",
num_dnsworkers-num_dnsworkers_busy, num_dnsworkers);
dnsconn = connection_get_by_type_state(CONN_TYPE_DNSWORKER, DNSWORKER_STATE_IDLE);
tor_assert(dnsconn);