Skip to content

Commit

Permalink
tetragon: Fix debug message in observerLoadInstance
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Olsa <[email protected]>
  • Loading branch information
olsajiri committed Aug 17, 2024
1 parent c2f3dbd commit 1aa735a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sensors/load.go
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ func observerLoadInstance(bpfDir string, load *program.Program) error {
l.WithFields(logrus.Fields{
"prog": load.Name,
"kern_version": version,
}).Debug("observerLoadInstance", load.Name, version)
}).Debugf("observerLoadInstance %s %d", load.Name, version)
if load.Type == "tracepoint" {
err = loadInstance(bpfDir, load, version, option.Config.Verbosity)
if err != nil {
Expand Down

0 comments on commit 1aa735a

Please sign in to comment.