From abe2aceb1801931b8e2371034a28273e5316b600 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Tue, 18 Jul 2023 15:53:39 +0000 Subject: [PATCH] feat(wireguard): clarify wireguard is up message --- internal/wireguard/run.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/wireguard/run.go b/internal/wireguard/run.go index cecd7ecc..af719d0d 100644 --- a/internal/wireguard/run.go +++ b/internal/wireguard/run.go @@ -127,7 +127,9 @@ func (w *Wireguard) Run(ctx context.Context, waitError chan<- error, ready chan< } closers.add("removing IPv4 rule", stepOne, ruleCleanup) - w.logger.Info("Wireguard is up") + w.logger.Info("Wireguard setup is complete. " + + "Note Wireguard is a silent protocol and it may or may not work, without giving any error message. " + + "Typically i/o timeout errors indicate the Wireguard connection is not working.") ready <- struct{}{} waitError <- waitAndCleanup()