浏览代码

stop notifying people about dns worker spawning and culling
it just freaks them out


svn:r4960

Roger Dingledine 20 年之前
父节点
当前提交
843550721a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/or/dns.c

+ 1 - 1
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);