]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Downgrade message about md cache cleaning from notice to info
authorNick Mathewson <nickm@torproject.org>
Tue, 26 Jun 2012 14:30:11 +0000 (10:30 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 26 Jun 2012 14:30:11 +0000 (10:30 -0400)
Fix for #6238

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

diff --git a/changes/bug6238 b/changes/bug6238
new file mode 100644 (file)
index 0000000..67cfd1d
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor bugfixes:
+    - Downgrade a message about cleaning the microdescriptor cache to
+      "info" from "notice". Fixes bug 6238; bugfix on 0.2.3.1-alpha.
index 42e860504efad11cdf1555a2c0409a5c0e1016f9..9395a9a05113e9333d98ad2dcdc89060b50dc127 100644 (file)
@@ -373,8 +373,8 @@ microdesc_cache_clean(microdesc_cache_t *cache, time_t cutoff, int force)
   }
 
   if (dropped) {
-    log_notice(LD_DIR, "Removed %d/%d microdescriptors as old.",
-               dropped,dropped+kept);
+    log_info(LD_DIR, "Removed %d/%d microdescriptors as old.",
+             dropped,dropped+kept);
     cache->bytes_dropped += bytes_dropped;
   }
 }