Browse Source

make "Launching %d requests for %d routers" message more useful

specifically, specify what sort of routers we're fetching.
Roger Dingledine 11 years ago
parent
commit
81c6db3288
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/or/routerlist.c

+ 3 - 3
src/or/routerlist.c

@@ -4484,9 +4484,9 @@ launch_descriptor_downloads(int purpose,
       rtr_plural = "s";
 
     log_info(LD_DIR,
-             "Launching %d request%s for %d router%s, %d at a time",
-             CEIL_DIV(n_downloadable, n_per_request),
-             req_plural, n_downloadable, rtr_plural, n_per_request);
+             "Launching %d request%s for %d %s%s, %d at a time",
+             CEIL_DIV(n_downloadable, n_per_request), req_plural,
+             n_downloadable, descname, rtr_plural, n_per_request);
     smartlist_sort_digests(downloadable);
     for (i=0; i < n_downloadable; i += n_per_request) {
       initiate_descriptor_downloads(source, purpose,