summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-06-09 05:16:47 +0000
committerRoger Dingledine <arma@torproject.org>2008-06-09 05:16:47 +0000
commit3b730c7556d0782378f41318f61c521a15b7e5a4 (patch)
treec7b3089f4d779d88cdb76508c230d4fd0e09926e
parent1ca2ead8c40b09862437fd63b9a04bd4465f5263 (diff)
downloadtor-3b730c7556d0782378f41318f61c521a15b7e5a4.tar.gz
tor-3b730c7556d0782378f41318f61c521a15b7e5a4.zip
whoops -- the other half of r15074
svn:r15076
-rw-r--r--src/or/routerlist.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index f00e36712a..71c8f17900 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -4235,7 +4235,9 @@ update_router_have_minimum_dir_info(void)
control_event_bootstrap(BOOTSTRAP_STATUS_CONN_OR, 0);
}
if (!res && have_min_dir_info) {
- log(LOG_NOTICE, LD_DIR,"Our directory information is no longer up-to-date "
+ quiet = directory_too_idle_to_fetch_descriptors(options, now);
+ log(quiet ? LOG_INFO : LOG_NOTICE, LD_DIR,
+ "Our directory information is no longer up-to-date "
"enough to build circuits: %s", dir_info_status);
control_event_client_status(LOG_NOTICE, "NOT_ENOUGH_DIR_INFO");
}