diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2013-03-26 15:57:38 -0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-03-29 12:21:28 -0400 |
commit | 9117b142186941f99eae8e07626f12f0b60acd44 (patch) | |
tree | c03457ff8858e65b9ad3b49051f7c32db0131113 /src/or/circuitbuild.c | |
parent | 80d8fb23e39e16764447f608428356bd5c49e4c6 (diff) | |
download | tor-9117b142186941f99eae8e07626f12f0b60acd44.tar.gz tor-9117b142186941f99eae8e07626f12f0b60acd44.zip |
Bug #8196: Demote a path bias notice that can be caused by controllers.
We didn't see this in normal usage anyway.
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 3ab534b08f..7db2b70bf7 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1378,7 +1378,7 @@ pathbias_should_count(origin_circuit_t *circ) if (circ->build_state->desired_path_len != 1 || !circ->build_state->onehop_tunnel) { if ((rate_msg = rate_limit_log(&count_limit, approx_time()))) { - log_notice(LD_BUG, + log_info(LD_BUG, "One-hop circuit has length %d. Path state is %s. " "Circuit is a %s currently %s.%s", circ->build_state->desired_path_len, |