[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r9670: Backport: downgrade a harmess message from warn to info. (in tor/branches/tor-0_1_1-patches: . src/or)



Author: nickm
Date: 2007-02-27 19:23:17 -0500 (Tue, 27 Feb 2007)
New Revision: 9670

Modified:
   tor/branches/tor-0_1_1-patches/
   tor/branches/tor-0_1_1-patches/ChangeLog
   tor/branches/tor-0_1_1-patches/src/or/routerlist.c
Log:
 r11971@catbus:  nickm | 2007-02-27 19:18:42 -0500
 Backport: downgrade a harmess message from warn to info.



Property changes on: tor/branches/tor-0_1_1-patches
___________________________________________________________________
 svk:merge ticket from /tor/011 [r11971] on 8246c3cf-6607-4228-993b-4d95d33730f1

Modified: tor/branches/tor-0_1_1-patches/ChangeLog
===================================================================
--- tor/branches/tor-0_1_1-patches/ChangeLog	2007-02-28 00:23:05 UTC (rev 9669)
+++ tor/branches/tor-0_1_1-patches/ChangeLog	2007-02-28 00:23:17 UTC (rev 9670)
@@ -22,6 +22,8 @@
       completes or fails, to fix a rare crash bug.
     - If we start a server with ClientOnly 1, then set ClientOnly to 0
       and hup, stop triggering an assert based on an empty onion_key.
+    - Downgrade the harmless "dropping unrecognized descriptor" message from
+      WARN to INFO.
 
 
 Changes in version 0.1.1.26 - 2006-12-14

Modified: tor/branches/tor-0_1_1-patches/src/or/routerlist.c
===================================================================
--- tor/branches/tor-0_1_1-patches/src/or/routerlist.c	2007-02-28 00:23:05 UTC (rev 9669)
+++ tor/branches/tor-0_1_1-patches/src/or/routerlist.c	2007-02-28 00:23:17 UTC (rev 9670)
@@ -1543,7 +1543,7 @@
     /* Only check the descriptor digest against the network statuses when
      * we are receiving in response to a fetch. */
     if (!signed_desc_digest_is_recognized(&router->cache_info)) {
-      log_warn(LD_DIR, "Dropping unrecognized descriptor for router '%s'",
+      log_info(LD_DIR, "Dropping unrecognized descriptor for router '%s'",
                router->nickname);
       *msg = "Router descriptor is not referenced by any network-status.";
       routerinfo_free(router);