From d9be4ff8574c869dd5ad213733f35c9587445aae Mon Sep 17 00:00:00 2001 From: Kaustubh Maske Patil <37668193+nikochiko@users.noreply.github.com> Date: Thu, 31 Aug 2023 15:32:14 +0530 Subject: [PATCH] remove debug printf --- runner.go | 3 --- 1 file changed, 3 deletions(-) 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