Skip to content

Commit

Permalink
Remove error logging and replace with debug
Browse files Browse the repository at this point in the history
  • Loading branch information
deven96 committed Nov 25, 2022
1 parent 0fe0965 commit 932ecdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inspector/tcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func (i *TcpLinux) Parse(output string) {
portString := address[len(address)-1]
port, err := strconv.Atoi(portString)
if err != nil {
log.Errorf("Could not parse port number in TcpLinux %s", err.Error())
log.Debugf("ERROR: Could not parse port number in TcpLinux %s", err.Error())
continue
}
ports[port] = status
Expand Down

0 comments on commit 932ecdc

Please sign in to comment.