summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-09-14 07:17:44 +0000
committerRoger Dingledine <arma@torproject.org>2008-09-14 07:17:44 +0000
commit7f2fd346457683a908406f76936d2518c73c461b (patch)
treeafd948a1079fcdfe5e3dd597bff6afc4bd243714
parentdbb481c169e8dd5ea9d7ee62bd22df0a511d442f (diff)
downloadtor-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.c5
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);