From: Roger Dingledine Date: Tue, 4 Sep 2012 02:10:49 +0000 (-0400) Subject: make "Launching %d requests for %d routers" message more useful X-Git-Tag: tor-0.2.4.1-alpha~25 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=81c6db32887f68e791df4dca806c9ac132e53ae4;p=thirdparty%2Ftor.git make "Launching %d requests for %d routers" message more useful specifically, specify what sort of routers we're fetching. --- diff --git a/src/or/routerlist.c b/src/or/routerlist.c index cee149a16d..4e57bfa10c 100644 --- a/src/or/routerlist.c +++ b/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,