diff options
author | Roger Dingledine <arma@torproject.org> | 2012-09-03 19:49:44 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2012-09-03 19:49:44 -0400 |
commit | 3ea37e5faae2eefa2dda2136f43fbf677325e080 (patch) | |
tree | bc0f7c38194e02b2331c15eb8e649919fc705970 /src/or | |
parent | 3a0b8c85c4f8ea5ea2278917de6fcf1a201d1cbf (diff) | |
download | tor-3ea37e5faae2eefa2dda2136f43fbf677325e080.tar.gz tor-3ea37e5faae2eefa2dda2136f43fbf677325e080.zip |
quiet "I learned some more directory information" on startup
Reserve it for when new directory information arrives in response to
a fetch.
Resolves ticket 6760.
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 20a1e086a4..f3b781ec2f 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -953,7 +953,8 @@ directory_info_has_arrived(time_t now, int from_cache) const or_options_t *options = get_options(); if (!router_have_minimum_dir_info()) { - int quiet = directory_too_idle_to_fetch_descriptors(options, now); + int quiet = from_cache || + directory_too_idle_to_fetch_descriptors(options, now); log(quiet ? LOG_INFO : LOG_NOTICE, LD_DIR, "I learned some more directory information, but not enough to " "build a circuit: %s", get_dir_info_status_string()); |