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):