diff options
author | Roger Dingledine <arma@torproject.org> | 2006-06-14 22:28:16 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-06-14 22:28:16 +0000 |
commit | de7a9c83d853752d9811741593aeba206f24a812 (patch) | |
tree | 7c7209f5d8f1746072ffe6f39bed514da8265606 /src/or/circuitbuild.c | |
parent | 09dfe1b2658a4f92b2f3e6f70ffbcd04d64585e0 (diff) | |
download | tor-de7a9c83d853752d9811741593aeba206f24a812.tar.gz tor-de7a9c83d853752d9811741593aeba206f24a812.zip |
upgrade the severity of the 'clock jump' warn, and ask people
to report if it occurs.
svn:r6623
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 14b1f97cce..ad2b2f2bf8 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -660,7 +660,8 @@ circuit_send_next_onion_skin(circuit_t *circ) void circuit_note_clock_jumped(int seconds_elapsed) { - log(LOG_NOTICE, LD_GENERAL,"Your clock just jumped %d seconds forward; " + log(LOG_WARN, LD_GENERAL, + "Please report: your clock just jumped %d seconds forward; " "assuming established circuits no longer work.", seconds_elapsed); has_completed_circuit=0; /* so it'll log when it works again */ circuit_mark_all_unused_circs(); |