From 4166120bf7692ebbda1d8a16f5bd8eeb8304bd0d Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 4 Aug 2025 10:35:39 -0700 Subject: [PATCH] pkg/payload/task: Include filename in Task.String To make it easier to see where the CVO is in the task-node system, by exposing the runlevel and group portions of the filename in logs. --- pkg/payload/task.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/payload/task.go b/pkg/payload/task.go index a260573af..b10c40268 100644 --- a/pkg/payload/task.go +++ b/pkg/payload/task.go @@ -108,7 +108,7 @@ func (st *Task) Copy() *Task { func (st *Task) String() string { manId := getManifestResourceId(*st.Manifest) - return fmt.Sprintf("%s (%d of %d)", manId, st.Index, st.Total) + return fmt.Sprintf("%s (%d of %d, %s)", manId, st.Index, st.Total, st.OriginalFilename) } // Run attempts to create the provided object until it: