Browse Source

upgrade the severity of the 'clock jump' warn, and ask people
to report if it occurs.


svn:r6623

Roger Dingledine 19 years ago
parent
commit
de7a9c83d8
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/or/circuitbuild.c

+ 2 - 1
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();