diff options
author | Roger Dingledine <arma@torproject.org> | 2006-10-01 04:55:12 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-10-01 04:55:12 +0000 |
commit | 96a4cb1dfa4d65c6c57261f038aa5bdf6e776ac2 (patch) | |
tree | dd8606a87310be1a58d2ca9510496b09b7d0d5dd /src/or/policies.c | |
parent | 6103077235e5a8ea4bb42063db71c8298e81beea (diff) | |
download | tor-96a4cb1dfa4d65c6c57261f038aa5bdf6e776ac2.tar.gz tor-96a4cb1dfa4d65c6c57261f038aa5bdf6e776ac2.zip |
touchups
svn:r8558
Diffstat (limited to 'src/or/policies.c')
-rw-r--r-- | src/or/policies.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/policies.c b/src/or/policies.c index f2f7cf8aab..699eaf6b0f 100644 --- a/src/or/policies.c +++ b/src/or/policies.c @@ -520,7 +520,7 @@ exit_policy_remove_redundancies(addr_policy_t **dest) tmp=ap; while (tmp) { if (tmp->next && addr_policy_covers(ap, tmp->next)) { - log(LOG_INFO, LD_CONFIG, "Removing exit policy %s. It is made " + log(LOG_DEBUG, LD_CONFIG, "Removing exit policy %s. It is made " "redundant by %s.", tmp->next->string, ap->string); victim = tmp->next; tmp->next = victim->next; @@ -550,8 +550,8 @@ exit_policy_remove_redundancies(addr_policy_t **dest) } if (ap->policy_type == tmp->policy_type && addr_policy_covers(tmp, ap)) { - log(LOG_INFO, LD_CONFIG, "Removing exit policy %s. It is made " - "redundant by %s.", ap->string, tmp->string); + log(LOG_DEBUG, LD_CONFIG, "Removing exit policy %s. It is already " + "covered by %s.", ap->string, tmp->string); victim = ap; ap = ap->next; |