From 8b108a130bee712e27425fb7e54275135c22dffc Mon Sep 17 00:00:00 2001 From: "devsy-app[bot]" <277138668+devsy-app[bot]@users.noreply.github.com> Date: Sat, 15 Aug 2026 09:46:11 +0000 Subject: [PATCH] fix(cmd): lowercase pro cluster logs lowercase three log strings in cmd/pro/cluster/add.go to follow the repo's lowercase-logs convention (installing agent, running helm command, waiting for cluster init). no behavioral change. --- cmd/pro/cluster/add.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/pro/cluster/add.go b/cmd/pro/cluster/add.go index 8d758dfd3..548fb8b72 100644 --- a/cmd/pro/cluster/add.go +++ b/cmd/pro/cluster/add.go @@ -371,8 +371,8 @@ func installAgent( helmCmd.Stderr = log.Writer(log.LevelDebug) helmCmd.Stdin = os.Stdin - log.Info("Installing agent") - log.Debugf("Running helm command: %v", helmCmd.Args) + log.Info("installing agent") + log.Debugf("running helm command: %v", helmCmd.Args) if err := helmCmd.Run(); err != nil { errChan <- fmt.Errorf("failed to install chart: %w", err) @@ -394,7 +394,7 @@ func waitForClusterInitialized( managementClient kube.Interface, clusterName string, ) error { - log.Info("Waiting for the cluster to be initialized") + log.Info("waiting for the cluster to be initialized") waitErr := wait.PollUntilContextTimeout( ctx, time.Second,