Skip to content

Commit

Permalink
chore: change prune logging info to debug (#17560)
Browse files Browse the repository at this point in the history
Co-authored-by: marbar3778 <marbar3778@yahoo.com>
  • Loading branch information
tac0turtle and tac0turtle authored Aug 28, 2023
1 parent 70b3e85 commit 682a9ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions store/rootmulti/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,8 @@ func (rs *Store) GetKVStore(key types.StoreKey) types.KVStore {

func (rs *Store) handlePruning(version int64) error {
pruneHeight := rs.pruningManager.GetPruningHeight(version)
rs.logger.Info("prune start", "height", version)
defer rs.logger.Info("prune end", "height", version)
rs.logger.Debug("prune start", "height", version)
defer rs.logger.Debug("prune end", "height", version)
return rs.PruneStores(pruneHeight)
}

Expand Down

0 comments on commit 682a9ac

Please sign in to comment.