diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-02-20 02:03:42 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-02-23 13:03:56 -0500 |
commit | d221b507c9b014039a94aa91bed082689342e347 (patch) | |
tree | 32b2d78390aaa9a126dbbe729f11d23db63efaa6 /src/or/nodelist.c | |
parent | 10ae9b9bf5882287ada74bc3e90f65ca64c27fab (diff) | |
download | tor-d221b507c9b014039a94aa91bed082689342e347.tar.gz tor-d221b507c9b014039a94aa91bed082689342e347.zip |
Avoid logging natural-language reports that are redundant with bootstrapping
Diffstat (limited to 'src/or/nodelist.c')
-rw-r--r-- | src/or/nodelist.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/or/nodelist.c b/src/or/nodelist.c index 23d7a06e17..8f8adb42b5 100644 --- a/src/or/nodelist.c +++ b/src/or/nodelist.c @@ -1698,10 +1698,11 @@ update_router_have_minimum_dir_info(void) /* If paths have just become available in this update. */ if (res && !have_min_dir_info) { - log_notice(LD_DIR, - "We now have enough directory information to build circuits."); control_event_client_status(LOG_NOTICE, "ENOUGH_DIR_INFO"); - control_event_bootstrap(BOOTSTRAP_STATUS_CONN_OR, 0); + if (control_event_bootstrap(BOOTSTRAP_STATUS_CONN_OR, 0) == 0) { + log_notice(LD_DIR, + "We now have enough directory information to build circuits."); + } } /* If paths have just become unavailable in this update. */ |