Skip to content

Commit

Permalink
fix: reduce log level
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Aug 23, 2024
1 parent 23055da commit 9c940b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/pkg/checker/ping/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func (app *App) Start(ctx context.Context) {
return
case result := <-app.ResultsBuffer:
if result.Success && result.Delay < app.MaxDelay {
log.Info().Any("result", result).Msg("ping success")
log.Debug().Any("result", result).Msg("ping success")
app.FailCount[result.Address] = 0
} else {
log.Error().Any("result", result).Msg("failed to ping endpoint")
Expand Down

0 comments on commit 9c940b7

Please sign in to comment.