diff options
author | Roger Dingledine <arma@torproject.org> | 2006-04-14 20:19:04 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-04-14 20:19:04 +0000 |
commit | 0c1ad47e9e504b8ea8af2c19b51f970f7e5a87a3 (patch) | |
tree | 469a5763d684cf770ece1036ac8700f744d466bc | |
parent | 45fbad264f011dcce46240af962404ecc32efd51 (diff) | |
download | tor-0c1ad47e9e504b8ea8af2c19b51f970f7e5a87a3.tar.gz tor-0c1ad47e9e504b8ea8af2c19b51f970f7e5a87a3.zip |
Stop complaining to server operators if we happen to have
downloaded network statuses in the wrong order and the
ones we have indicate that they're unnamed. This is a false
complaint too often for my/their comfort.
svn:r6384
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 77fa045018..a2d70d2c16 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -2704,7 +2704,7 @@ routers_update_all_from_networkstatus(void) n_recent-n_valid, n_recent); have_warned_about_invalid_status = 1; } else if (n_naming && !n_named) { - log_warn(LD_GENERAL, "0/%d name-binding directory authorities " + log_info(LD_GENERAL, "0/%d name-binding directory authorities " "recognize your nickname. Please consider sending your " "nickname and identity fingerprint to the tor-ops.", n_naming); |