diff --git a/iface/tun_windows.go b/iface/tun_windows.go index a4ddf1d85..39541a92a 100644 --- a/iface/tun_windows.go +++ b/iface/tun_windows.go @@ -167,5 +167,7 @@ func (c *tunDevice) assignAddr() error { // getUAPI returns a Listener func (c *tunDevice) getUAPI(iface string) (net.Listener, error) { - return ipc.UAPIListen(iface) + l, err := ipc.UAPIListen(iface) + log.Infof("UAPI LISTEN RESULT: %v", err) + return l, err }