From d56e83ab81b3da145a28d2259dc79e78c8503b47 Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Thu, 30 Jan 2025 16:57:43 -0700 Subject: [PATCH] Remove a redundant "Building image" log message after image exec Signed-off-by: Jonathon Anderson --- CHANGELOG.md | 1 + internal/app/wwctl/image/exec/main.go | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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)