]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Downgrade notice to info when downloading a cert.
authorNick Mathewson <nickm@torproject.org>
Tue, 26 Apr 2011 16:46:07 +0000 (12:46 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 26 Apr 2011 16:47:09 +0000 (12:47 -0400)
changes/bug2899 [new file with mode: 0644]
src/or/routerlist.c

diff --git a/changes/bug2899 b/changes/bug2899
new file mode 100644 (file)
index 0000000..6af86d0
--- /dev/null
@@ -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.
+
index 4deff53a3ca8022e03fa7b393d51ac62654286f4..c02654feef240bb278728910888673fd05073fe2 100644 (file)
@@ -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);