]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Don't log about reloading the microdescriptor cache at startup
authorRoger Dingledine <arma@torproject.org>
Mon, 3 Sep 2012 22:50:27 +0000 (18:50 -0400)
committerRoger Dingledine <arma@torproject.org>
Mon, 3 Sep 2012 22:50:27 +0000 (18:50 -0400)
Addresses bug 6759.

changes/bug6759 [new file with mode: 0644]
src/or/microdesc.c

diff --git a/changes/bug6759 b/changes/bug6759
new file mode 100644 (file)
index 0000000..b0092d0
--- /dev/null
@@ -0,0 +1,6 @@
+  o Minor bugfixes:
+    - Don't log about reloading the microdescriptor cache at startup. Our
+      bootstrap warnings are supposed to tell the user when there's a
+      problem, and our bootstrap notices say when there isn't. Fixes
+      bug 6759; bugfix on 0.2.2.6-alpha.
+
index b4d22c1c625a622c2d37f73b92f7c225b7a47d78..3bda9cbfafbd08aee88c76fdbd92aec93ec03b50 100644 (file)
@@ -323,8 +323,8 @@ microdesc_cache_reload(microdesc_cache_t *cache)
     }
     tor_free(journal_content);
   }
-  log_notice(LD_DIR, "Reloaded microdescriptor cache.  Found %d descriptors.",
-             total);
+  log_info(LD_DIR, "Reloaded microdescriptor cache. Found %d descriptors.",
+           total);
 
   microdesc_cache_rebuild(cache, 0 /* don't force */);