From: Roger Dingledine Date: Wed, 14 Jun 2006 22:28:16 +0000 (+0000) Subject: upgrade the severity of the 'clock jump' warn, and ask people X-Git-Tag: tor-0.1.1.23~221 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de7a9c83d853752d9811741593aeba206f24a812;p=thirdparty%2Ftor.git upgrade the severity of the 'clock jump' warn, and ask people to report if it occurs. svn:r6623 --- 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();