Skip to content

Commit

Permalink
Change log message "failed to flush" from info -> debug (#333)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmetc authored Oct 2, 2023
1 parent 4ad0fd2 commit af6e7e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/nftables/nftables_context.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ func (c *nftContext) deleteElementChunk(els []nftables.SetElement) error {
log.Debugf("deleting %s, failed to flush: %s", reprIP(els[0].Key), err)
return nil
}
log.Infof("failed to flush chunk of %d elements, will retry each one: %s", len(els), err)
log.Debugf("failed to flush chunk of %d elements, will retry each one: %s", len(els), err)
for _, el := range els {
if err := c.deleteElementChunk([]nftables.SetElement{el}); err != nil {
return err
Expand Down

0 comments on commit af6e7e2

Please sign in to comment.