Skip to content

Commit

Permalink
fix: reduce error logs
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Dec 23, 2024
1 parent 365271a commit a45fb6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/pkg/wss/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (ws *WebsocketHelper) Run(ctx context.Context, router func(context.Context,
for {
err := ws.dialAndSubscribe(ctx)
if err != nil {
log.Error().Err(err).Str("endpoint", ws.Endpoint).Msg("error dialing and subscribing to websocket")
log.Warn().Err(err).Str("endpoint", ws.Endpoint).Msg("error dialing and subscribing to websocket")
time.Sleep(time.Second)
continue
}
Expand Down

0 comments on commit a45fb6b

Please sign in to comment.