diff options
author | Roger Dingledine <arma@torproject.org> | 2007-04-25 06:10:16 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-04-25 06:10:16 +0000 |
commit | 7b11f2c84399be65ec7f71c082ce21b83b99c860 (patch) | |
tree | 745a71795f0e5fd1b7435bb7d90c0de585f6e1b7 /src | |
parent | 5bdb138d11158c526faa10c2e9647f3b8c304083 (diff) | |
download | tor-7b11f2c84399be65ec7f71c082ce21b83b99c860.tar tor-7b11f2c84399be65ec7f71c082ce21b83b99c860.tar.gz |
stop generating a 6-gig info-level log file after a day of running
svn:r10023
Diffstat (limited to 'src')
-rw-r--r-- | src/or/relay.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index 933d07928..51e6702e6 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -1833,7 +1833,7 @@ connection_or_flush_from_first_active_circuit(or_connection_t *conn, int max) /* Did we just ran out of cells on this queue? */ if (queue->n == 0) { - log_info(LD_GENERAL, "Made a circuit inactive."); + log_debug(LD_GENERAL, "Made a circuit inactive."); make_circuit_inactive_on_conn(circ, conn); } return n_flushed; @@ -1866,7 +1866,7 @@ append_cell_to_circuit_queue(circuit_t *circ, or_connection_t *orconn, if (queue->n == 1) { /* This was the first cell added to the queue. We need to make this * circuit active. */ - log_info(LD_GENERAL, "Made a circuit active."); + log_debug(LD_GENERAL, "Made a circuit active."); make_circuit_active_on_conn(circ, orconn); } @@ -1875,7 +1875,7 @@ append_cell_to_circuit_queue(circuit_t *circ, or_connection_t *orconn, * cell, so that we can notice when it gets flushed, flushed_some can * get called, and we can start putting more data onto the buffer then. */ - log_info(LD_GENERAL, "Primed a buffer."); + log_debug(LD_GENERAL, "Primed a buffer."); connection_or_flush_from_first_active_circuit(orconn, 1); } } |