From ff178635440b9411f538960d3bf726bc275c2664 Mon Sep 17 00:00:00 2001 From: Seoyoung Ko <31757627+koseoyoung@users.noreply.github.com> Date: Thu, 31 Oct 2019 11:13:29 -0700 Subject: [PATCH] change log level (#136) --- committee/committee.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/committee/committee.go b/committee/committee.go index f7f0c68..d4011c5 100644 --- a/committee/committee.go +++ b/committee/committee.go @@ -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",