aboutsummaryrefslogtreecommitdiff
path: root/src/or/networkstatus.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-01-24 02:31:37 +0000
committerRoger Dingledine <arma@torproject.org>2008-01-24 02:31:37 +0000
commit980fcb1ca79fe812bf6033c35424fc1c112389d5 (patch)
tree30086aa26ba09e26c81ce29a63392ef2ee21ccf3 /src/or/networkstatus.c
parente67f23f8973512a343ee288c0ed3564209b46647 (diff)
downloadtor-980fcb1ca79fe812bf6033c35424fc1c112389d5.tar
tor-980fcb1ca79fe812bf6033c35424fc1c112389d5.tar.gz
When we get a consensus that's been signed by more people than
we expect, don't log about it; it's not a big deal. svn:r13249
Diffstat (limited to 'src/or/networkstatus.c')
-rw-r--r--src/or/networkstatus.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c
index e0b07518a..961adab07 100644
--- a/src/or/networkstatus.c
+++ b/src/or/networkstatus.c
@@ -435,11 +435,11 @@ networkstatus_check_consensus_signature(networkstatus_vote_t *consensus,
if (warn >= 0) {
SMARTLIST_FOREACH(unrecognized, networkstatus_voter_info_t *, voter,
{
- log(severity, LD_DIR, "Consensus includes unrecognized authority '%s' "
- "at %s:%d (contact %s; identity %s)",
- voter->nickname, voter->address, (int)voter->dir_port,
- voter->contact?voter->contact:"n/a",
- hex_str(voter->identity_digest, DIGEST_LEN));
+ log_info(LD_DIR, "Consensus includes unrecognized authority '%s' "
+ "at %s:%d (contact %s; identity %s)",
+ voter->nickname, voter->address, (int)voter->dir_port,
+ voter->contact?voter->contact:"n/a",
+ hex_str(voter->identity_digest, DIGEST_LEN));
});
SMARTLIST_FOREACH(need_certs_from, networkstatus_voter_info_t *, voter,
{