From: Mike Perry Date: Thu, 17 Jun 2010 01:13:27 +0000 (-0700) Subject: Mention the purpose field for leaked circuits. X-Git-Tag: tor-0.2.2.14-alpha~11^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5dbf99d9ff59e69c064acda31495486635f8b844;p=thirdparty%2Ftor.git Mention the purpose field for leaked circuits. --- diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 0187448aaa..c1b39b18e7 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -733,9 +733,10 @@ circuit_expire_old_circuits_clientside(time_t now) } else if (!TO_ORIGIN_CIRCUIT(circ)->is_ancient) { log_notice(LD_CIRC, "Ancient non-dirty circuit %d is still around after " - "%ld seconds.", + "%ld seconds. Purpose: %d", TO_ORIGIN_CIRCUIT(circ)->global_identifier, - now - circ->timestamp_created); + now - circ->timestamp_created, + circ->purpose); TO_ORIGIN_CIRCUIT(circ)->is_ancient = 1; } }