diff options
author | Roger Dingledine <arma@torproject.org> | 2014-03-24 02:31:13 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2014-03-24 02:33:17 -0400 |
commit | 85ef58e5ba4f9678981242e1a1ee581798b0531d (patch) | |
tree | 2035ff3ac456596e5f9b4ef3daf12846eb2900bf /src/or/circuitstats.c | |
parent | a6afebd8de8c291c5859f055eccc32448c8feb4a (diff) | |
download | tor-85ef58e5ba4f9678981242e1a1ee581798b0531d.tar.gz tor-85ef58e5ba4f9678981242e1a1ee581798b0531d.zip |
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.
Diffstat (limited to 'src/or/circuitstats.c')
-rw-r--r-- | src/or/circuitstats.c | 4 |
1 files changed, 4 insertions, 0 deletions
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; } } |