Skip to content

Commit

Permalink
fix: set the appropriate verbosity of errors of watcher
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoutsovasilis committed Feb 9, 2024
1 parent 5350596 commit fe6453a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auditbeat/module/file_integrity/eventreader_kprobes.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (r kProbesReader) nextEvent(done <-chan struct{}) *Event {

case err := <-r.watcher.ErrorChannel():
if err != nil {
r.log.Warnw("kprobes watcher error", "error", err)
r.log.Errorw("kprobes watcher error", "error", err)
}
}
}
Expand Down

0 comments on commit fe6453a

Please sign in to comment.