log: move some Info to Debug

This commit is contained in:
Ethan Buchman
2016-10-14 20:27:50 -04:00
parent de0fc87c1c
commit 7d493774c7
5 changed files with 17 additions and 17 deletions

View File

@ -18,7 +18,7 @@ func BlockchainInfo(minHeight, maxHeight int) (*ctypes.ResultBlockchainInfo, err
if minHeight == 0 {
minHeight = MaxInt(1, maxHeight-20)
}
log.Info("BlockchainInfoHandler", "maxHeight", maxHeight, "minHeight", minHeight)
log.Debug("BlockchainInfoHandler", "maxHeight", maxHeight, "minHeight", minHeight)
blockMetas := []*types.BlockMeta{}
for height := maxHeight; height >= minHeight; height-- {