diff options
author | George Kadianakis <desnacked@riseup.net> | 2015-01-29 15:49:23 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-02-18 09:09:34 -0500 |
commit | 33053d50a0c3a3545285bac8b6883f7c66cf748c (patch) | |
tree | 9be4544337c0caeb52765ad7c339153846dd0d4c /src/or/routerlist.c | |
parent | 028ede2f5e4ca3f5695cf9ca73fb9bd17a7de898 (diff) | |
download | tor-33053d50a0c3a3545285bac8b6883f7c66cf748c.tar.gz tor-33053d50a0c3a3545285bac8b6883f7c66cf748c.zip |
Final guardfraction preparations for upstream merge.
- Write a changes file.
- Change some logs to lesser severities.
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 61b2f74a18..41fdb7a4bd 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -2166,9 +2166,9 @@ compute_weighted_bandwidths(const smartlist_t *sl, guardfraction_bw.guard_bw * weight + guardfraction_bw.non_guard_bw * weight_without_guard_flag; - log_warn(LD_GENERAL, "%s: Guardfraction weight %f instead of %f (%s)", - node->rs->nickname, final_weight, weight*this_bw, - bandwidth_weight_rule_to_string(rule)); + log_debug(LD_GENERAL, "%s: Guardfraction weight %f instead of %f (%s)", + node->rs->nickname, final_weight, weight*this_bw, + bandwidth_weight_rule_to_string(rule)); } else { /* no guardfraction information. calculate the weight normally. */ final_weight = weight*this_bw; } |