From 3114465cad8355a81e2ef49a7d153c08910cbe88 Mon Sep 17 00:00:00 2001 From: Antoine Gelloz Date: Tue, 29 Oct 2024 13:33:07 +0100 Subject: [PATCH] fix: remove useless debug print --- pkg/exec/shell.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/exec/shell.go b/pkg/exec/shell.go index 676f3388..ce6c98c5 100644 --- a/pkg/exec/shell.go +++ b/pkg/exec/shell.go @@ -64,12 +64,10 @@ func (e ShellExecutor) ExecuteWithWriters(stdout, stderr io.Writer, name string, // ExecuteWithWriter executes a command and forwards both stdout and stderr to a single io.Writer. func (e ShellExecutor) ExecuteWithWriter(writer io.Writer, name string, args ...string) error { - logger.Debugf("Exec cmd: %s %v", name, args) return e.ExecuteWithWriters(writer, writer, name, args...) } // ExecuteStdout executes a shell command and prints to the standard output. func (e ShellExecutor) ExecuteStdout(name string, args ...string) error { - logger.Debugf("Exec cmd: %s %v", name, args) return e.ExecuteWithWriters(os.Stdout, os.Stderr, name, args...) }