tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 3f8201f229ea5142f67a83067c7f321558488fe4
parent 4dbbc000b5082210c79e8dfe09f7410abc10e982
Author: David Goulet <dgoulet@torproject.org>
Date:   Tue, 22 Sep 2020 13:47:08 -0400

Merge branch 'maint-0.4.4'

Diffstat:
Achanges/ticket40135 | 3+++
Msrc/feature/hs_common/shared_random_client.c | 4----
2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/changes/ticket40135 b/changes/ticket40135 @@ -0,0 +1,3 @@ + o Minor bugfix (logging): + - Remove a debug logging statement that uselessly spam the logs. Fixes bug + 40135; bugfix on 0.3.5.0-alpha. diff --git a/src/feature/hs_common/shared_random_client.c b/src/feature/hs_common/shared_random_client.c @@ -274,10 +274,6 @@ sr_state_get_start_time_of_current_protocol_run(void) protocol run */ time_t time_elapsed_since_start_of_run = curr_round_slot * voting_interval; - log_debug(LD_GENERAL, "Current SRV proto run: Start of current round: %u. " - "Time elapsed: %u (%d)", (unsigned) beginning_of_curr_round, - (unsigned) time_elapsed_since_start_of_run, voting_interval); - return beginning_of_curr_round - time_elapsed_since_start_of_run; }