Skip to content

Commit

Permalink
change log level (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
koseoyoung authored Oct 31, 2019
1 parent a03cc7f commit ff17863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion committee/committee.go
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ func (ec *committee) ResultByHeight(height uint64) (*types.ElectionResult, error
}

func (ec *committee) resultByHeight(height uint64) (*types.ElectionResult, error) {
zap.L().Info("fetch result from DB and calculate", zap.Uint64("height", height))
zap.L().Debug("fetch result from DB and calculate", zap.Uint64("height", height))
if height < ec.startHeight {
return nil, errors.Errorf(
"height %d is lower than start height %d",
Expand Down

0 comments on commit ff17863

Please sign in to comment.