From 9f001bbc062ec0822296727f629142d40e2e1c72 Mon Sep 17 00:00:00 2001 From: "Quentin McGaw (desktop)" Date: Sat, 18 Sep 2021 19:12:27 +0000 Subject: [PATCH] Feat: log wireguard server endpoint --- internal/wireguard/run.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/wireguard/run.go b/internal/wireguard/run.go index 7c41b3d1..db832cf5 100644 --- a/internal/wireguard/run.go +++ b/internal/wireguard/run.go @@ -107,6 +107,7 @@ func (w *Wireguard) Run(ctx context.Context, waitError chan<- error, ready chan< return } + w.logger.Info("Connecting to " + w.settings.Endpoint.String()) err = configureDevice(client, w.settings) if err != nil { waitError <- fmt.Errorf("%w: %s", ErrConfigure, err)