Don't log about reloading the microdescriptor cache at startup

Addresses bug 6759.
This commit is contained in:
Roger Dingledine 2012-09-03 18:50:27 -04:00
parent 4bd90e20b9
commit 2131cc125b
2 changed files with 8 additions and 2 deletions

6
changes/bug6759 Normal file
View File

@ -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.

View 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 */);