From 9dcbe82ae643fa29b1f9fa67d0c94cfd912f8969 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 2 Nov 2025 08:47:47 -0800 Subject: [PATCH] Update weed/shell/command_ec_rebuild.go Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- weed/shell/command_ec_rebuild.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weed/shell/command_ec_rebuild.go b/weed/shell/command_ec_rebuild.go index 04067351d..9a39dd35d 100644 --- a/weed/shell/command_ec_rebuild.go +++ b/weed/shell/command_ec_rebuild.go @@ -89,9 +89,9 @@ func (c *commandEcRebuild) Do(args []string, commandEnv *CommandEnv, writer io.W collections = []string{*collection} } - fmt.Printf("rebuildEcVolumes for %+v collection(s)\n", len(collections)) + fmt.Printf("rebuildEcVolumes for %d collection(s)\n", len(collections)) for _, c := range collections { - fmt.Printf("rebuildEcVolumes collection %+v\n", c) + fmt.Printf("rebuildEcVolumes collection %s\n", c) if err = rebuildEcVolumes(commandEnv, allEcNodes, c, writer, *applyChanges); err != nil { return err }