diff options
| author | Paul Buetow <paul@buetow.org> | 2024-02-29 11:08:48 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-02-29 11:08:48 +0200 |
| commit | f4549a9f22cf14713b2d74cf4d95a17565a5bf67 (patch) | |
| tree | 714585805cf9de4dfff62611ac522e62e6b4235f /internal | |
| parent | f9a3636cd13e9a6331eb6a3b3826d3eb3f06433d (diff) | |
it's not unknown but unhandled
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/eventloop.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/eventloop.go b/internal/eventloop.go index 4ab60f2..120a327 100644 --- a/internal/eventloop.go +++ b/internal/eventloop.go @@ -62,7 +62,7 @@ func eventLoop(bpfModule *bpf.Module, ch <-chan []byte) { case EXIT_RET_EVENT: exit(NewRetEvent(raw)) default: - panic(fmt.Sprintf("Unknown event type %s", EventType(raw[0]))) + panic(fmt.Sprintf("Unhandled event type %s", EventType(raw[0]))) } } |
