diff options
author | Roger Dingledine <arma@torproject.org> | 2008-09-14 07:17:44 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-09-14 07:17:44 +0000 |
commit | 7f2fd346457683a908406f76936d2518c73c461b (patch) | |
tree | afd948a1079fcdfe5e3dd597bff6afc4bd243714 | |
parent | dbb481c169e8dd5ea9d7ee62bd22df0a511d442f (diff) | |
download | tor-7f2fd346457683a908406f76936d2518c73c461b.tar.gz tor-7f2fd346457683a908406f76936d2518c73c461b.zip |
stop telling us every time we fetch a consensus. that's not really news.
svn:r16908
-rw-r--r-- | src/or/directory.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index f494fe2839..246592f89a 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -941,9 +941,8 @@ directory_send_command(dir_connection_t *conn, tor_assert(!payload); httpcommand = "GET"; url = directory_get_consensus_url(supports_conditional_consensus); - /* XXX021: downgrade/remove once done with conditional consensus fu */ - log_notice(LD_DIR, "Downloading consensus from %s using %s", - hoststring, url); + log_info(LD_DIR, "Downloading consensus from %s using %s", + hoststring, url); break; case DIR_PURPOSE_FETCH_CERTIFICATE: tor_assert(resource); |