From a040ce5f8eda4d1399b02456019fd953b8849c8c Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Wed, 24 Jun 2026 14:50:45 +1000 Subject: [PATCH] chore: make retry log debug --- internal/machine/cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/machine/cluster.go b/internal/machine/cluster.go index d46610a5..9ae742fe 100644 --- a/internal/machine/cluster.go +++ b/internal/machine/cluster.go @@ -614,7 +614,7 @@ func (cc *clusterController) syncDockerContainers(ctx context.Context) error { ), ctx) watchAndSync := func() error { if wErr := cc.dockerCtrl.WatchAndSyncContainers(ctx); wErr != nil { - slog.Error("Failed to watch and sync containers to cluster store, retrying.", "err", wErr) + slog.Debug("Failed to watch and sync containers to cluster store, retrying.", "err", wErr) return wErr } return nil