Fix and improve minor issues

This commit is contained in:
Daniel
2021-06-01 12:54:50 +02:00
parent 525687a30b
commit f86f3ecab7
3 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ func GetProcessByConnection(ctx context.Context, pktInfo *packet.Info) (process
var pid int
pid, connInbound, err = state.Lookup(pktInfo, fastSearch)
if err != nil {
log.Tracer(ctx).Debugf("process: failed to find PID of connection: %s", err)
log.Tracer(ctx).Tracef("process: failed to find PID of connection: %s", err)
return nil, pktInfo.Inbound, err
}