From f6b3522b3f8d55d83ccfce215f968bc0afe4081b Mon Sep 17 00:00:00 2001 From: Ed Date: Mon, 17 Dec 2018 21:02:28 -0500 Subject: [PATCH] Remove debug logs from in to avoid erroring in Concourse --- in_command.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/in_command.go b/in_command.go index 68c183a..3c46d22 100644 --- a/in_command.go +++ b/in_command.go @@ -2,7 +2,6 @@ package resource import ( "errors" - "fmt" "io" "io/ioutil" "os" @@ -109,7 +108,6 @@ func (c *InCommand) Run(destDir string, request InRequest) (InResponse, error) { continue } - fmt.Fprintf(c.writer, "downloading file: %s\n", attachment.Name) err := c.gitlab.DownloadProjectFile(attachment.URL, path) if err != nil { return InResponse{}, err