No need to use "\n" in Debugf()

This commit is contained in:
Nikolay Edigaryev 2026-01-29 16:06:29 +01:00
parent d1e83353cf
commit 5406bb4a8a
1 changed files with 1 additions and 1 deletions

View File

@ -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 {