fix: debug message

Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
This commit is contained in:
Francesco Canovai 2025-04-17 16:00:55 +02:00 committed by Armando Ruocco
parent 8867eab905
commit 63be684ec8

View File

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