From 9e6c0b8b3b96e9a0b28f301ad83fd0d712c8747f Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Thu, 28 Sep 2006 22:59:25 +0000 Subject: [PATCH] r9888@danube: weasel | 2006-09-29 00:57:02 +0200 Also log guard bandwidth cutoff svn:r8514 --- src/or/dirserv.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index b159afed97..54c9a341c6 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1313,6 +1313,8 @@ dirserv_compute_performance_thresholds(routerlist_t *rl) (unsigned long)stable_uptime); log_info(LD_DIRSERV, "Bandwidth cutoff is %lu bytes.", (unsigned long)fast_bandwidth); + log_info(LD_DIRSERV, "Guard bandwidth cutoff is %lu bytes.", + (unsigned long)guard_bandwidth); SMARTLIST_FOREACH(uptimes, uint32_t *, up, tor_free(up)); SMARTLIST_FOREACH(bandwidths, uint32_t *, bw, tor_free(bw));