[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] those should be notices, not warns
Update of /home2/or/cvsroot/tor/src/or
In directory moria.mit.edu:/tmp/cvs-serv30974
Modified Files:
dirserv.c
Log Message:
those should be notices, not warns
Index: dirserv.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/dirserv.c,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -d -r1.157 -r1.158
--- dirserv.c 7 Apr 2005 21:07:19 -0000 1.157
+++ dirserv.c 12 Apr 2005 22:09:04 -0000 1.158
@@ -1025,11 +1025,11 @@
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;
}