From 8ac18394953ec997d350e0bf91821b63b0497754 Mon Sep 17 00:00:00 2001 From: Alex Buchanan Date: Tue, 10 Sep 2024 10:28:02 -0700 Subject: [PATCH] fix: clean up helm debug logs (#106) --- internal/cmd/local/helm/helm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/local/helm/helm.go b/internal/cmd/local/helm/helm.go index af3d50d..dc1eeb7 100644 --- a/internal/cmd/local/helm/helm.go +++ b/internal/cmd/local/helm/helm.go @@ -68,5 +68,5 @@ func (d helmLogger) Write(p []byte) (int, error) { } func (d helmLogger) Debug(format string, v ...interface{}) { - pterm.Debug.Println(fmt.Sprintf("helm - DEBUG: "+format, v...)) + pterm.Debug.Println(fmt.Sprintf("helm: "+format, v...)) }