aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2017-08-09 11:25:53 -0400
committerGeorge Kadianakis <desnacked@riseup.net>2017-08-19 16:20:07 +0300
commit5750f18bc7efacc2405918d08bc3f47e4c6a7ae9 (patch)
treee3d0716a458484065266aed220e08ac843d80332
parent257f50b22fbaf9c9cb5859e257437b24af46c7ab (diff)
downloadtor-5750f18bc7efacc2405918d08bc3f47e4c6a7ae9.tar.gz
tor-5750f18bc7efacc2405918d08bc3f47e4c6a7ae9.zip
sr: Log voting schedule at debug level
Because the HS subsystem calls it every second, change the log level to debug so it doesn't spam the info log. Signed-off-by: David Goulet <dgoulet@torproject.org>
-rw-r--r--src/or/shared_random_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/shared_random_state.c b/src/or/shared_random_state.c
index d7ae05e895..5fcf88cc4a 100644
--- a/src/or/shared_random_state.c
+++ b/src/or/shared_random_state.c
@@ -139,7 +139,7 @@ get_start_time_of_current_round(time_t now)
const or_options_t *options = get_options();
int voting_interval = get_voting_interval();
voting_schedule_t *new_voting_schedule =
- get_voting_schedule(options, now, LOG_INFO);
+ get_voting_schedule(options, now, LOG_DEBUG);
tor_assert(new_voting_schedule);
/* First, get the start time of the next round */