diff --git a/main.go b/main.go index f526710..7e80b59 100644 --- a/main.go +++ b/main.go @@ -31,7 +31,7 @@ func resizeFolder(src, dest string, x, y int) { filepath.Walk(src, func(path string, info fs.FileInfo, err error) error { if !info.IsDir() { destination := strings.ReplaceAll(path, src, dest) - log.Printf("moving %s to %s", path, destination) + log.Printf("copying %s resized to %s", path, destination) resize(path, destination, x, y) } return err