summaryrefslogtreecommitdiff
path: root/internal/eventloop.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/eventloop.go')
-rw-r--r--internal/eventloop.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/internal/eventloop.go b/internal/eventloop.go
index d450fa3..fa799ee 100644
--- a/internal/eventloop.go
+++ b/internal/eventloop.go
@@ -47,10 +47,7 @@ func events(rawCh <-chan []byte) <-chan enterExitEvent {
// don't match up. E.g.:
// enterEv:SYS_ENTER_OPEN => exitEv:SYS_EXIT_OPEN
if ev.enterEv.GetSyscallId()-1 != ev.exitEv.GetSyscallId() {
- fmt.Println(fmt.Sprintf("Loss of event (not matching) %v", ev))
- ev.enterEv.Recycle()
- exitEv.Recycle()
- return
+ ev.tracepointMismatch = true
}
// Handle the opening of a file.