Skip to content

Commit

Permalink
downgrade sentinel peer check interval log
Browse files Browse the repository at this point in the history
  • Loading branch information
Intizar-T committed Aug 30, 2024
1 parent d7fcdf0 commit ec8289f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/pkg/checker/peers/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func setUp() error {
peerCheckInterval, err = time.ParseDuration(os.Getenv("PEER_CHECK_INTERVAL"))
if err != nil {
peerCheckInterval = DEFAULT_PEER_CHECK_INTERVAL
log.Error().Err(err).Dur("peerCheckInterval", peerCheckInterval).Msg("Using default peer check interval of 10s")
log.Info().Err(err).Dur("peerCheckInterval", peerCheckInterval).Msg("Using default peer check interval of 10s")
}

initialCount, err := checkPeerCounts()
Expand Down

0 comments on commit ec8289f

Please sign in to comment.