[tor-commits] [tor/maint-0.2.2] Downgrade notice to info when downloading a cert.
nickm at torproject.org
nickm at torproject.org
Tue Apr 26 16:47:25 UTC 2011
commit bb6d45af1fc738b9f71e798cde6c7564172b6e04
Author: Nick Mathewson <nickm at torproject.org>
Date: Tue Apr 26 12:46:07 2011 -0400
Downgrade notice to info when downloading a cert.
---
changes/bug2899 | 4 ++++
src/or/routerlist.c | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/changes/bug2899 b/changes/bug2899
new file mode 100644
index 0000000..6af86d0
--- /dev/null
+++ b/changes/bug2899
@@ -0,0 +1,4 @@
+ - Minor bugfixes:
+ o Downgrade "no current certificates known for authority" message from
+ Notice to Info. Bugfix on 0.2.0.10-alpha; fixes bug 2899.
+
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 4deff53..c02654f 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -531,8 +531,8 @@ authority_certs_fetch_missing(networkstatus_t *status, time_t now)
if (!found &&
download_status_is_ready(&cl->dl_status, now,MAX_CERT_DL_FAILURES) &&
!digestmap_get(pending, ds->v3_identity_digest)) {
- log_notice(LD_DIR, "No current certificate known for authority %s; "
- "launching request.", ds->nickname);
+ log_info(LD_DIR, "No current certificate known for authority %s; "
+ "launching request.", ds->nickname);
smartlist_add(missing_digests, ds->v3_identity_digest);
}
} SMARTLIST_FOREACH_END(ds);
More information about the tor-commits
mailing list