[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r10023: stop generating a 6-gig info-level log file after a day of r (tor/trunk/src/or)
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] r10023: stop generating a 6-gig info-level log file after a day of r (tor/trunk/src/or)
- From: arma@xxxxxxxx
- Date: Wed, 25 Apr 2007 02:10:21 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Wed, 25 Apr 2007 02:10:44 -0400
- Reply-to: or-talk@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Author: arma
Date: 2007-04-25 02:10:16 -0400 (Wed, 25 Apr 2007)
New Revision: 10023
Modified:
tor/trunk/src/or/relay.c
Log:
stop generating a 6-gig info-level log file after a day of running
Modified: tor/trunk/src/or/relay.c
===================================================================
--- tor/trunk/src/or/relay.c 2007-04-25 06:05:46 UTC (rev 10022)
+++ tor/trunk/src/or/relay.c 2007-04-25 06:10:16 UTC (rev 10023)
@@ -1833,7 +1833,7 @@
/* 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 @@
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 @@
* 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);
}
}