From 914d79f2ef7b5c22f13333d7266fe376cd1415d1 Mon Sep 17 00:00:00 2001 From: Viktor Voltaire Date: Thu, 23 Dec 2021 10:54:17 +0100 Subject: [PATCH] chore: remove log.Println from cmd --- sh/cmd.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/sh/cmd.go b/sh/cmd.go index 87bb37e6..b31f11f7 100644 --- a/sh/cmd.go +++ b/sh/cmd.go @@ -4,7 +4,6 @@ import ( "bytes" "fmt" "io" - "log" "os" "os/exec" "strings" @@ -137,7 +136,6 @@ func run(env map[string]string, stdout, stderr io.Writer, cmd string, args ...st for i := range args { quoted = append(quoted, fmt.Sprintf("%q", args[i])); } - log.Println("exec:", cmd, strings.Join(quoted, " ")) err = c.Run() return CmdRan(err), ExitStatus(err), err }