summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2010-01-25 18:05:20 +0100
committerSebastian Hahn <sebastian@torproject.org>2010-01-25 18:05:20 +0100
commit7e89cc31ab16ea56a6ef45c16910c9adfe7a9d7a (patch)
tree3a2aa1dfc40d878e4d4d1f50c7a99ee745c28a2d /src
parenta93cabd9ab1ea9614136033f6c17eac295ff4adf (diff)
downloadtor-7e89cc31ab16ea56a6ef45c16910c9adfe7a9d7a.tar.gz
tor-7e89cc31ab16ea56a6ef45c16910c9adfe7a9d7a.zip
Be quieter about failing to decode authority digests
This was freaking out some relay operators without good reason, as it is nothing the relay operator can do anything about anyways. Quieting this warning suggested by rieo.
Diffstat (limited to 'src')
-rw-r--r--src/or/directory.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/directory.c b/src/or/directory.c
index 30c08b84b2..ef0816eb41 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -2334,7 +2334,8 @@ client_likes_consensus(networkstatus_t *v, const char *want_url)
want_len = DIGEST_LEN;
if (base16_decode(want_digest, DIGEST_LEN, d, want_len*2) < 0) {
- log_warn(LD_DIR,"Failed to decode requested authority digest %s.", d);
+ log_fn(LOG_PROTOCOL_WARN, LD_DIR,
+ "Failed to decode requested authority digest %s.", d);
continue;
};