diff options
author | Roger Dingledine <arma@torproject.org> | 2006-04-09 20:19:56 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-04-09 20:19:56 +0000 |
commit | b6b534c9dd34d9b4726321662c61b07cb2730bfa (patch) | |
tree | 84b999ee0bbcc0494004b3d36f2b56ecb2e2762f /src/or | |
parent | c82d65d204232f389c8b50336c517694a8b8ef7f (diff) | |
download | tor-b6b534c9dd34d9b4726321662c61b07cb2730bfa.tar tor-b6b534c9dd34d9b4726321662c61b07cb2730bfa.tar.gz |
quiet a bootstrapping message
svn:r6342
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/routerlist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index ebb34e1f8..2eb08d987 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; } |