change some logs to debug

This commit is contained in:
Ethan Buchman 2016-11-03 20:13:39 -04:00
parent 94ac890859
commit 3ff9355e7b
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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