Remove debug logs from in to avoid erroring in Concourse

This commit is contained in:
Ed
2018-12-17 21:02:28 -05:00
parent 7ea2024512
commit f6b3522b3f

View File

@@ -2,7 +2,6 @@ package resource
import ( import (
"errors" "errors"
"fmt"
"io" "io"
"io/ioutil" "io/ioutil"
"os" "os"
@@ -109,7 +108,6 @@ func (c *InCommand) Run(destDir string, request InRequest) (InResponse, error) {
continue continue
} }
fmt.Fprintf(c.writer, "downloading file: %s\n", attachment.Name)
err := c.gitlab.DownloadProjectFile(attachment.URL, path) err := c.gitlab.DownloadProjectFile(attachment.URL, path)
if err != nil { if err != nil {
return InResponse{}, err return InResponse{}, err