Demote error and warning logging when process of packet could not be found

This commit is contained in:
Daniel
2020-05-18 15:33:05 +02:00
parent 3adf52d19c
commit 0036d25672
2 changed files with 4 additions and 4 deletions

View File

@@ -56,13 +56,13 @@ func GetProcessByEndpoints(
var pid int
pid, connInbound, err = state.Lookup(ipVersion, protocol, localIP, localPort, remoteIP, remotePort, pktInbound)
if err != nil {
log.Tracer(ctx).Errorf("process: failed to find PID of connection: %s", err)
log.Tracer(ctx).Debugf("process: failed to find PID of connection: %s", err)
return nil, connInbound, err
}
process, err = GetOrFindPrimaryProcess(ctx, pid)
if err != nil {
log.Tracer(ctx).Errorf("process: failed to find (primary) process with PID: %s", err)
log.Tracer(ctx).Debugf("process: failed to find (primary) process with PID: %s", err)
return nil, connInbound, err
}