diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2013-03-27 16:22:43 -0700 |
---|---|---|
committer | Mike Perry <mikeperry-git@fscked.org> | 2013-03-27 16:22:43 -0700 |
commit | 87d50d0617d89290ca263aa6f415e45a0c37a11a (patch) | |
tree | aa63204c7480bb581845e5e3dca2fac25329b6be /src | |
parent | fc9a72c6886c83f96f0b322dab92dbc3c5a8f26b (diff) | |
download | tor-87d50d0617d89290ca263aa6f415e45a0c37a11a.tar tor-87d50d0617d89290ca263aa6f415e45a0c37a11a.tar.gz |
Clarify liveness log message and lower it to notice.
It could just be due to small clock jumps, after all.
Diffstat (limited to 'src')
-rw-r--r-- | src/or/circuitstats.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/or/circuitstats.c b/src/or/circuitstats.c index fe9c80ddc..1d7812bf2 100644 --- a/src/or/circuitstats.c +++ b/src/or/circuitstats.c @@ -1232,11 +1232,11 @@ circuit_build_times_network_close(circuit_build_times_t *cbt, format_local_iso_time(last_live_buf, cbt->liveness.network_last_live); format_local_iso_time(start_time_buf, start_time); format_local_iso_time(now_buf, now); - log_warn(LD_BUG, - "Circuit somehow completed a hop while the network was " - "not live. Network was last live at %s, but circuit launched " - "at %s. It's now %s.", last_live_buf, start_time_buf, - now_buf); + log_notice(LD_CIRC, + "A circuit somehow completed a hop while the network was " + "not live. The network was last live at %s, but the circuit " + "launched at %s. It's now %s. This could mean your clock " + "changed.", last_live_buf, start_time_buf, now_buf); } cbt->liveness.nonlive_timeouts++; if (cbt->liveness.nonlive_timeouts == 1) { |