aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2010-09-16 10:52:43 -0400
committerNick Mathewson <nickm@torproject.org>2010-09-16 10:52:43 -0400
commitc009c9da016a1285262482655fc72f38cf03c2d7 (patch)
tree72a94c293038d6871dbbc5423cac1acda18ff213 /src
parent0ac67bf3c3aff13adccafb6ded303cb9f186d188 (diff)
parent4f1e36ca1d2c8051f6d282fadef3834b4b76462f (diff)
downloadtor-c009c9da016a1285262482655fc72f38cf03c2d7.tar.gz
tor-c009c9da016a1285262482655fc72f38cf03c2d7.zip
Merge remote branch 'sebastian/bug1921'
Diffstat (limited to 'src')
-rw-r--r--src/or/relay.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/relay.c b/src/or/relay.c
index a4f7718d90..f6f5d92fcb 100644
--- a/src/or/relay.c
+++ b/src/or/relay.c
@@ -2297,7 +2297,9 @@ connection_or_flush_from_first_active_circuit(or_connection_t *conn, int max,
flushed = (uint32_t)((now.tv_sec % SECONDS_IN_A_DAY) * 100L +
(uint32_t)now.tv_usec / (uint32_t)10000L);
if (!it_queue || !it_queue->first) {
- log_warn(LD_BUG, "Cannot determine insertion time of cell.");
+ log_info(LD_GENERAL, "Cannot determine insertion time of cell. "
+ "Looks like the CellStatistics option was "
+ "recently enabled.");
} else {
or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
insertion_time_elem_t *elem = it_queue->first;