From 843550721a741b0951b8899dcdcfece5ced403cd Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 9 Sep 2005 02:03:31 +0000 Subject: [PATCH] stop notifying people about dns worker spawning and culling it just freaks them out svn:r4960 --- src/or/dns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/dns.c b/src/or/dns.c index 87a3baaa5f..bcc9bb014d 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -919,7 +919,7 @@ spawn_enough_dnsworkers(void) 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);