diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d30a797..658796ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Use configured warewulf.conf path in `wwctl upgrade`. #1658 - Fixed negation for slice field elements during profile/node merge. #1677 - Show each overlay only once, even when both site and distribution versions exist. #1675 +- Remove a redundant "Building image" log message after image exec. #1694 ## v4.6.0rc1, 2025-01-29 diff --git a/internal/app/wwctl/image/exec/main.go b/internal/app/wwctl/image/exec/main.go index 495518c6..19aa119d 100644 --- a/internal/app/wwctl/image/exec/main.go +++ b/internal/app/wwctl/image/exec/main.go @@ -154,7 +154,6 @@ func CobraRunE(cmd *cobra.Command, args []string) error { } if Build { - wwlog.Info("Building image: %s", imageName) err = image.Build(imageName, false) if err != nil { return fmt.Errorf("could not build image: %s: %s", imageName, err)