From 691a90516df4dc029a00a61f0d60dbefda708c40 Mon Sep 17 00:00:00 2001 From: Diego Romar Date: Fri, 19 Dec 2025 12:47:52 -0300 Subject: [PATCH] Change log.Debug in goroutine for log.Info --- client/internal/engine.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/internal/engine.go b/client/internal/engine.go index 8b383ae06..68c42222f 100644 --- a/client/internal/engine.go +++ b/client/internal/engine.go @@ -476,11 +476,11 @@ func (e *Engine) Start(netbirdConfig *mgmProto.NetbirdConfig, mgmtURL *url.URL) return } else { lastErr = pErr - log.Debugf("populate DNS cache attempt %d failed: %v", attempts+1, pErr) + log.Infof("populate DNS cache attempt %d failed: %v", attempts+1, pErr) } d := backoff + time.Duration(rand.Intn(500))*time.Millisecond - log.WithFields(log.Fields{"attempt": attempts + 1, "sleep": d}).Debug("populate DNS cache retrying") + log.WithFields(log.Fields{"attempt": attempts + 1, "sleep": d}).Info("populate DNS cache retrying") select { case <-time.After(d):