summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-04-09 20:19:56 +0000
committerRoger Dingledine <arma@torproject.org>2006-04-09 20:19:56 +0000
commitb6b534c9dd34d9b4726321662c61b07cb2730bfa (patch)
tree84b999ee0bbcc0494004b3d36f2b56ecb2e2762f
parentc82d65d204232f389c8b50336c517694a8b8ef7f (diff)
downloadtor-b6b534c9dd34d9b4726321662c61b07cb2730bfa.tar.gz
tor-b6b534c9dd34d9b4726321662c61b07cb2730bfa.zip
quiet a bootstrapping message
svn:r6342
-rw-r--r--src/or/routerlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index ebb34e1f88..2eb08d9874 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -2883,9 +2883,9 @@ routerstatus_list_update_from_networkstatus(time_t now)
if (n_statuses <= n_trusted/2) {
/* Not enough statuses to adjust status. */
- log_notice(LD_DIR,
- "Not enough statuses to update router status list. (%d/%d)",
- n_statuses, n_trusted);
+ log_info(LD_DIR,
+ "Not enough statuses to update router status list. (%d/%d)",
+ n_statuses, n_trusted);
return;
}