diff options
author | Roger Dingledine <arma@torproject.org> | 2004-03-27 00:13:27 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-03-27 00:13:27 +0000 |
commit | f2a692081fd398160714ef6d49b709f9d89855f8 (patch) | |
tree | 938aa7298b8f7540cdefa2e427d3338eaff61167 | |
parent | a98579e0bc945aec4a7367f41e925019b91c8a22 (diff) | |
download | tor-f2a692081fd398160714ef6d49b709f9d89855f8.tar tor-f2a692081fd398160714ef6d49b709f9d89855f8.tar.gz |
make it less noisy to consider exit policies
svn:r1349
-rw-r--r-- | src/or/routerlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 172ff2069..76baa9c8e 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -472,7 +472,7 @@ int router_compare_addr_to_exit_policy(uint32_t addr, uint16_t port, struct exit_policy_t *tmpe; for(tmpe=policy; tmpe; tmpe=tmpe->next) { - log_fn(LOG_DEBUG,"Considering exit policy %s", tmpe->string); +// log_fn(LOG_DEBUG,"Considering exit policy %s", tmpe->string); maybe = 0; if (!addr) { /* Address is unknown. */ @@ -506,7 +506,7 @@ int router_compare_addr_to_exit_policy(uint32_t addr, uint16_t port, } if (match) { in.s_addr = htonl(addr); - log_fn(LOG_INFO,"Address %s:%d matches exit policy '%s'", + log_fn(LOG_DEBUG,"Address %s:%d matches exit policy '%s'", inet_ntoa(in), port, tmpe->string); if(tmpe->policy_type == EXIT_POLICY_ACCEPT) { /* If we already hit a clause that might trigger a 'reject', than we |