From 63be684ec83ae4fcdc015a614850aa9d0795414a Mon Sep 17 00:00:00 2001 From: Francesco Canovai Date: Thu, 17 Apr 2025 16:00:55 +0200 Subject: [PATCH] fix: debug message Signed-off-by: Francesco Canovai --- internal/cnpgi/common/wal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cnpgi/common/wal.go b/internal/cnpgi/common/wal.go index 7974010..0da8a39 100644 --- a/internal/cnpgi/common/wal.go +++ b/internal/cnpgi/common/wal.go @@ -175,7 +175,7 @@ func (w WALServiceImplementation) Archive( // Ensure the requested WAL file is always the first one being // archived walFilesList.Ready = append([]string{request.GetSourceFileName()}, walFilesList.Ready...) - contextLogger.Debug("WAL files to archive: %v", "walFilesListReady", walFilesList.Ready) + contextLogger.Debug("WAL files to archive", "walFilesListReady", walFilesList.Ready) result := arch.ArchiveList(ctx, walFilesList.ReadyItemsToSlice(), options) for _, archiverResult := range result {