From 3ff9355e7bf0e83cdca8a2a46fd812421fa597a8 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Thu, 3 Nov 2016 20:13:39 -0400 Subject: [PATCH] change some logs to debug --- consensus/reactor.go | 2 +- state/execution.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/consensus/reactor.go b/consensus/reactor.go index 31b93eef3..4d5e5618f 100644 --- a/consensus/reactor.go +++ b/consensus/reactor.go @@ -503,7 +503,7 @@ OUTER_LOOP: if sleeping == 0 { // We sent nothing. Sleep... sleeping = 1 - log.Info("No votes to send, sleeping", "peer", peer, + log.Debug("No votes to send, sleeping", "peer", peer, "localPV", rs.Votes.Prevotes(rs.Round).BitArray(), "peerPV", prs.Prevotes, "localPC", rs.Votes.Precommits(rs.Round).BitArray(), "peerPC", prs.Precommits) } else if sleeping == 2 { diff --git a/state/execution.go b/state/execution.go index 3c2cb90c8..b6bc215ee 100644 --- a/state/execution.go +++ b/state/execution.go @@ -111,7 +111,7 @@ func (s *State) execBlockOnProxyApp(eventCache types.Fireable, proxyAppConn prox return err } // TODO: Do something with changedValidators - log.Info("TODO: Do something with changedValidators", "changedValidators", changedValidators) + log.Debug("TODO: Do something with changedValidators", "changedValidators", changedValidators) log.Info(Fmt("ExecBlock got %v valid txs and %v invalid txs", validTxs, invalidTxs)) return nil