diff options
author | Roger Dingledine <arma@torproject.org> | 2005-01-17 18:49:13 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-01-17 18:49:13 +0000 |
commit | ea24dc31bc3deff4cbbbe5f130efd30e144efb69 (patch) | |
tree | 25c21949c2dd8030479099cd61c2465edf1c43db /src/or/circuituse.c | |
parent | d2400a5afd70b009b632b307205273fc25c8cd92 (diff) | |
download | tor-ea24dc31bc3deff4cbbbe5f130efd30e144efb69.tar.gz tor-ea24dc31bc3deff4cbbbe5f130efd30e144efb69.zip |
remove some extra-verbose logs
svn:r3361
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index a3adde59b1..0298b72309 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -198,6 +198,7 @@ void circuit_expire_building(time_t now) { if (victim->timestamp_created + MIN_SECONDS_BEFORE_EXPIRING_CIRC > now) continue; /* it's young still, don't mess with it */ +#if 0 /* some debug logs, to help track bugs */ if (victim->purpose >= CIRCUIT_PURPOSE_C_INTRODUCING && victim->purpose <= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED) { @@ -213,6 +214,7 @@ void circuit_expire_building(time_t now) { victim->n_circ_id, (int)(now - victim->timestamp_dirty)); } +#endif /* if circ is !open, or if it's open but purpose is a non-finished * intro or rend, then mark it for close */ |