From bf79b5266f2cac9ff6d6b56d5e422e2c54de03b7 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 12 Apr 2005 22:09:04 +0000 Subject: [PATCH] those should be notices, not warns svn:r4079 --- src/or/dirserv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index eb7fa772c3..239e2e8f0f 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1025,11 +1025,11 @@ dirserv_orconn_tls_done(const char *address, or_port == ri->or_port) { /* We have a router at the same address! */ if (strcasecmp(ri->nickname, nickname_rcvd)) { - log_fn(LOG_WARN, "Dropping descriptor: nickname '%s' does not match nickname '%s' in cert from %s:%d", + log_fn(LOG_NOTICE, "Dropping descriptor: nickname '%s' does not match nickname '%s' in cert from %s:%d", ri->nickname, nickname_rcvd, address, or_port); drop = 1; } else if (memcmp(ri->identity_digest, digest_rcvd, DIGEST_LEN)) { - log_fn(LOG_WARN, "Dropping descriptor: identity key does not match key in cert from %s:%d", + log_fn(LOG_NOTICE, "Dropping descriptor: identity key does not match key in cert from %s:%d", address, or_port); drop = 1; }