Skip to content

Commit

Permalink
indexer: remove info log (#6194)
Browse files Browse the repository at this point in the history
Co-authored-by: Aleksandr Bezobchuk <[email protected]>
Co-authored-by: Marko <[email protected]>
  • Loading branch information
3 people committed Dec 8, 2021
1 parent 9243a45 commit d1ca5e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion state/execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func (blockExec *BlockExecutor) ApplyBlock(
return state, 0, err
}
if len(validatorUpdates) > 0 {
blockExec.logger.Info("updates to validators", "updates", types.ValidatorListString(validatorUpdates))
blockExec.logger.Debug("updates to validators", "updates", types.ValidatorListString(validatorUpdates))
}

// Update the state with the block and responses.
Expand Down
2 changes: 1 addition & 1 deletion state/txindex/indexer_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (is *IndexerService) OnStart() error {
if err = is.idr.AddBatch(batch); err != nil {
is.Logger.Error("Failed to index block", "height", height, "err", err)
} else {
is.Logger.Info("Indexed block", "height", height)
is.Logger.Debug("indexed block", "height", height)
}
}
}()
Expand Down

0 comments on commit d1ca5e9

Please sign in to comment.