Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
silvareal committed Nov 6, 2022
2 parents 6c9c36c + 2df1f1b commit a8e3265
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion inspector/tcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ func (i *TcpLinux) Parse(output string) {
portString := address[len(address)-1]
port, err := strconv.Atoi(portString)
if err != nil {
log.Fatalf("Could not parse port number in TcpLinux %s", err.Error())
log.Errorf("Could not parse port number in TcpLinux %s", err.Error())
continue
}
ports[port] = status
}
Expand Down

0 comments on commit a8e3265

Please sign in to comment.