Fixed log in case of ipv6 only config

Signed-off-by: Roberto Bonafiglia <roberto.bonafiglia@suse.com>
pull/5260/head
Roberto Bonafiglia 2022-03-08 09:42:25 +01:00
parent 29324439b8
commit 7bae0481ef
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ func LookupExtInterface(iface *net.Interface, netMode int) (*backend.ExternalInt
if err != nil {
return nil, fmt.Errorf("failed to find IPv6 address for interface %s", iface.Name)
}
logrus.Infof("Using dual-stack mode. The ipv6 address %s will be used by flannel", ifacev6Addr[0])
logrus.Infof("The interface %s with ipv6 address %s will be used by flannel", iface.Name, ifacev6Addr[0])
ifaceAddr = append(ifaceAddr, nil)
case (ipv4 + ipv6):
ifaceAddr, err = ip.GetInterfaceIP4Addrs(iface)