From 492b7ed8753eff5c419d7a9f8224329617c5ef44 Mon Sep 17 00:00:00 2001 From: Matt Schallert Date: Sun, 22 Mar 2020 21:19:30 -0400 Subject: [PATCH] [dbnode] bootstrap: Make verbose log debug lvl (#2222) --- src/dbnode/storage/bootstrap/bootstrapper/fs/source.go | 2 +- src/dbnode/storage/bootstrap/bootstrapper/peers/source.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dbnode/storage/bootstrap/bootstrapper/fs/source.go b/src/dbnode/storage/bootstrap/bootstrapper/fs/source.go index 017f1ed78e..4960176e7d 100644 --- a/src/dbnode/storage/bootstrap/bootstrapper/fs/source.go +++ b/src/dbnode/storage/bootstrap/bootstrapper/fs/source.go @@ -488,7 +488,7 @@ func (s *fileSystemSource) loadShardReadersDataIntoShardResult( // Determine all requested ranges were fulfilled or at edge of retention satisifiedFlushRanges := noneRemaining || overlapsWithInitalIndexRange if shouldFlush && satisifiedFlushRanges { - s.log.Info("building file set index segment", buildIndexLogFields...) + s.log.Debug("building file set index segment", buildIndexLogFields...) if err := bootstrapper.PersistBootstrapIndexSegment( ns, requestedRanges, diff --git a/src/dbnode/storage/bootstrap/bootstrapper/peers/source.go b/src/dbnode/storage/bootstrap/bootstrapper/peers/source.go index 41273c4c7f..01cdce8f70 100644 --- a/src/dbnode/storage/bootstrap/bootstrapper/peers/source.go +++ b/src/dbnode/storage/bootstrap/bootstrapper/peers/source.go @@ -804,7 +804,7 @@ func (s *peersSource) processReaders( zap.String("remainingRanges", remainingRanges.SummaryString()), } if shouldPersist { - s.log.Info("building file set index segment", buildIndexLogFields...) + s.log.Debug("building file set index segment", buildIndexLogFields...) if err := bootstrapper.PersistBootstrapIndexSegment( ns, requestedRanges,