From 5406bb4a8af3e1fe86a6c2ddf6e1d48ce4ad9d3f Mon Sep 17 00:00:00 2001 From: Nikolay Edigaryev Date: Thu, 29 Jan 2026 16:06:29 +0100 Subject: [PATCH] No need to use "\n" in Debugf() --- internal/worker/worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/worker/worker.go b/internal/worker/worker.go index 77136a6..8173480 100644 --- a/internal/worker/worker.go +++ b/internal/worker/worker.go @@ -339,7 +339,7 @@ func (worker *Worker) syncVMs(ctx context.Context, updateVM func(context.Context action := transitions[remoteState][localState] worker.logger.Debugf("processing VM: %s, remote state: %s, local state: %s, "+ - "local conditions: [%s], action: %v\n", onDiskName, optionToString(remoteState), + "local conditions: [%s], action: %v", onDiskName, optionToString(remoteState), optionToString(localState), v1.ConditionsHumanize(localConditions), action) switch action {