Selaa lähdekoodia

Downgrade notice to info when downloading a cert.

Nick Mathewson 14 vuotta sitten
vanhempi
commit
bb6d45af1f
2 muutettua tiedostoa jossa 6 lisäystä ja 2 poistoa
  1. 4 0
      changes/bug2899
  2. 2 2
      src/or/routerlist.c

+ 4 - 0
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.
+

+ 2 - 2
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);