From 9551487f534f18502f1524e86671910ccdfa807a Mon Sep 17 00:00:00 2001 From: reubenmiller Date: Wed, 14 Jan 2026 09:28:16 +0100 Subject: [PATCH] fix: fix typo in the container-image setting name in a log message --- cli/container_image/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/container_image/cmd.go b/cli/container_image/cmd.go index d65661f..ab4ff24 100644 --- a/cli/container_image/cmd.go +++ b/cli/container_image/cmd.go @@ -14,7 +14,7 @@ func IsEnabled(cmdCli cli.Cli) func(*cobra.Command, []string) error { return func(cmd *cobra.Command, args []string) error { enabled := cmdCli.GetBool("container_image.enabled") if !enabled { - slog.Info("The container-image sm-plugin is not enabled. Enabled it using the 'container-image.enabled' setting") + slog.Info("The container-image sm-plugin is not enabled. Enabled it using the 'container_image.enabled' setting or 'CONTAINER_CONTAINER_IMAGE_ENABLED' env variable") return cli.ExitCodeError{ Code: 1, Err: fmt.Errorf("container-image is not enabled"),