Skip to content

Commit

Permalink
Set logging to warn
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanTinianov committed Apr 26, 2024
1 parent 04c4cfa commit 8f3619d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/client/poller.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func (p *Poller[T]) pollingLoop() {
result, err := p.pollingFunc(pollingCtx)
cancelPolling()
if err != nil {
p.logger.Errorf("polling error: %v", err)
p.logger.Warnf("polling error: %v", err)
continue
}
// Send result to channel or block if channel is full
Expand Down

0 comments on commit 8f3619d

Please sign in to comment.