From 9b5df9ac2c0fc1ce96561ef761d2a708245f73fd Mon Sep 17 00:00:00 2001 From: Jean-Francois Smigielski Date: Mon, 9 May 2022 09:13:30 +0200 Subject: [PATCH] Avoid non-error debug on stdout --- Device.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Device.go b/Device.go index a0f5a4a..14d0178 100644 --- a/Device.go +++ b/Device.go @@ -125,7 +125,7 @@ func GetAvailableDevicesAtSpecificEthernetInterface(interfaceName string) []Devi endpoints := doc.Root().FindElements("./Body/ProbeMatches/ProbeMatch/XAddrs") for _, xaddr := range endpoints { xaddr := strings.Split(strings.Split(xaddr.Text(), " ")[0], "/")[2] - fmt.Println(xaddr) + //fmt.Println(xaddr) c := 0 for c = 0; c < len(nvtDevices); c++ {