Skip to content

Commit

Permalink
change ObjectPermsChange event log level from Info to Trace
Browse files Browse the repository at this point in the history
  • Loading branch information
YoannGh committed Nov 15, 2024
1 parent 5dbaa67 commit e7dda3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/security/probe/probe_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ func (p *WindowsProbe) auditEtw(ecb etwCallback) error {
switch e.EventHeader.EventDescriptor.ID {
case idObjectPermsChange:
if pc, err := p.parseObjectPermsChange(e); err == nil {
log.Infof("Received objectPermsChange event %d %s\n", e.EventHeader.EventDescriptor.ID, pc)
log.Tracef("Received objectPermsChange event %d %s\n", e.EventHeader.EventDescriptor.ID, pc)
ecb(pc, e.EventHeader.ProcessID)
}
}
Expand Down

0 comments on commit e7dda3d

Please sign in to comment.