summaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2016-02-22 02:55:42 -0500
committerRoger Dingledine <arma@torproject.org>2016-02-22 02:55:42 -0500
commit56c5e282a733912776f6dacbe4f5df66b4fb9606 (patch)
treea77f007f6780e58f2a8cbcc0b0c7fa90eb4163ee /src/or
parent43193ec888cbc15689b6db784d59c45c34a1e7f1 (diff)
downloadtor-56c5e282a733912776f6dacbe4f5df66b4fb9606.tar.gz
tor-56c5e282a733912776f6dacbe4f5df66b4fb9606.zip
avoid extra LOG_NOTICE for every new microdesc batch
We already write out bootstrapping progress (see bug 9927) per new microdesc batch. There's no need to do a full "I learned some more directory information, but not enough to..." line each time too.
Diffstat (limited to 'src/or')
-rw-r--r--src/or/directory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/directory.c b/src/or/directory.c
index b686286458..7c3bfe5529 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -2169,7 +2169,7 @@ connection_dir_client_reached_eof(dir_connection_t *conn)
control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_DESCRIPTORS,
count_loading_descriptors_progress());
if (mds && smartlist_len(mds))
- directory_info_has_arrived(now, 0, 0);
+ directory_info_has_arrived(now, 0, 1);
SMARTLIST_FOREACH(which, char *, cp, tor_free(cp));
smartlist_free(which);
smartlist_free(mds);