From: Roger Dingledine Date: Mon, 24 Mar 2014 06:31:13 +0000 (-0400) Subject: quiet the debug message in circuit_build_times_disabled() X-Git-Tag: tor-0.2.5.4-alpha~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=85ef58e5ba4f9678981242e1a1ee581798b0531d;p=thirdparty%2Ftor.git quiet the debug message in circuit_build_times_disabled() something recently made it get called once per second, which will clutter up your debug log file. --- diff --git a/src/or/circuitstats.c b/src/or/circuitstats.c index eaefc9edde..c093ecd269 100644 --- a/src/or/circuitstats.c +++ b/src/or/circuitstats.c @@ -94,18 +94,22 @@ circuit_build_times_disabled(void) if (consensus_disabled || config_disabled || dirauth_disabled || state_disabled) { +#if 0 log_debug(LD_CIRC, "CircuitBuildTime learning is disabled. " "Consensus=%d, Config=%d, AuthDir=%d, StateFile=%d", consensus_disabled, config_disabled, dirauth_disabled, state_disabled); +#endif return 1; } else { +#if 0 log_debug(LD_CIRC, "CircuitBuildTime learning is not disabled. " "Consensus=%d, Config=%d, AuthDir=%d, StateFile=%d", consensus_disabled, config_disabled, dirauth_disabled, state_disabled); +#endif return 0; } }