From ab6e7fa58b06f8d084645f0f6c70186cb188b6ee Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Wed, 8 Oct 2025 18:48:34 -0400 Subject: [PATCH] Removing debug statement Signed-off-by: Matt Farina --- pkg/cmd/status.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/cmd/status.go b/pkg/cmd/status.go index ea8516b1a..f68316c6c 100644 --- a/pkg/cmd/status.go +++ b/pkg/cmd/status.go @@ -145,7 +145,6 @@ func (s statusPrinter) WriteTable(out io.Writer) error { return nil } rel := s.getV1Release() - fmt.Printf("%+v", rel) _, _ = fmt.Fprintf(out, "NAME: %s\n", rel.Name) if !rel.Info.LastDeployed.IsZero() { _, _ = fmt.Fprintf(out, "LAST DEPLOYED: %s\n", rel.Info.LastDeployed.Format(time.ANSIC))