From fbe8f72668d6a28d3a7df1395861c8dd9aef1546 Mon Sep 17 00:00:00 2001 From: dom Date: Sat, 25 Jul 2020 12:24:17 +0200 Subject: [PATCH] remove debug output --- ftpActions.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ftpActions.go b/ftpActions.go index cec0594..b128cda 100644 --- a/ftpActions.go +++ b/ftpActions.go @@ -1,9 +1,7 @@ package paxan import ( - "fmt" "io" - "log" "os" "path/filepath" "time" @@ -30,8 +28,6 @@ func DownloadFTP(user string, password string, path string) error { return err } - fmt.Printf("%v", files) - for _, file := range files { res, err := c.Retr(file.Name) if err != nil {