diff --git a/runner.go b/runner.go index 80a8d95..1aea9a3 100644 --- a/runner.go +++ b/runner.go @@ -3,7 +3,6 @@ package main import ( "context" "errors" - "log" "os/exec" "strings" "time" @@ -19,8 +18,6 @@ func runCommand(timeout time.Duration, command string, args []string) (*cmdRespo cmd.Stderr = &stderr err := cmd.Run() - log.Printf("Error after running command: %v", err) - // if the command exits with a non-zero exit code, // we still want to return a valid cmdResponse var exitError *exec.ExitError