diff --git a/daemon/core/core.go b/daemon/core/core.go index cf85a4f0e6..ccc2033ccc 100644 --- a/daemon/core/core.go +++ b/daemon/core/core.go @@ -25,7 +25,6 @@ func Exec(executable string, args []string) (string, error) { raw, err := exec.Command(path, args...).CombinedOutput() if err != nil { - fmt.Printf("ERROR: path=%s args=%s err=%s out='%s'\n", path, args, err, raw) return "", err } else { return Trim(string(raw)), nil