diff --git a/iface/iface_linux.go b/iface/iface_linux.go index d010fc130..6d4c62485 100644 --- a/iface/iface_linux.go +++ b/iface/iface_linux.go @@ -38,9 +38,10 @@ func WireguardModExists() bool { func (w *WGIface) Create() error { if WireguardModExists() { - log.Debug("using kernel Wireguard module") + log.Info("using kernel WireGuard") return w.CreateWithKernel() } else { + log.Info("using userspace WireGuard") return w.CreateWithUserspace() } }