summaryrefslogtreecommitdiff
path: root/wget.go
diff options
context:
space:
mode:
Diffstat (limited to 'wget.go')
-rw-r--r--wget.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/wget.go b/wget.go
index a2317c4..5d5c1be 100644
--- a/wget.go
+++ b/wget.go
@@ -45,6 +45,8 @@ func Wget(url string) (*bytes.Buffer) {
}
func WgetToFile(filepath string, url string) error {
+ log.Println("WgetToFile() filepath =", filepath)
+ log.Println("WgetToFile() URL =", url)
// Get the data
resp, err := http.Get(url)
if err != nil {