RedMadRobot / figma-export

Command line utility to export colors, typography, icons and images from Figma to Xcode / Android Studio project
MIT License
719 stars 115 forks source link

Output progress when fetching image URLs #85

Closed subdan closed 3 years ago

subdan commented 3 years ago

Before

2021-03-12T18:18:54+0300 info com.redmadrobot.figma-export : Using FigmaExport 0.21.1 to export images to Android Studio project.
2021-03-12T18:18:54+0300 info com.redmadrobot.figma-export : Fetching images info from Figma. Please wait...
2021-03-12T18:19:03+0300 info com.redmadrobot.figma-export : Processing images...
2021-03-12T18:19:03+0300 info com.redmadrobot.figma-export : Downloading remote files...
2021-03-12T18:19:04+0300 info com.redmadrobot.figma-export.file-downloader : Downloaded 1/30
2021-03-12T18:19:05+0300 info com.redmadrobot.figma-export.file-downloader : Downloaded 2/30
...

After:

2021-03-12T18:18:54+0300 info com.redmadrobot.figma-export : Using FigmaExport 0.21.1 to export images to Android Studio project.
2021-03-12T18:18:54+0300 info com.redmadrobot.figma-export : Fetching images info from Figma. Please wait...
2021-03-12T18:18:55+0300 info com.redmadrobot.figma-export : Fetching PNG images for scale 1.0...
2021-03-12T18:18:55+0300 info com.redmadrobot.figma-export : Fetching PNG images for scale 2.0...
2021-03-12T18:18:56+0300 info com.redmadrobot.figma-export : Fetching PNG images for scale 3.0...
2021-03-12T18:18:57+0300 info com.redmadrobot.figma-export : Fetching PNG images for scale 1.5...
2021-03-12T18:18:57+0300 info com.redmadrobot.figma-export : Fetching PNG images for scale 4.0...
2021-03-12T18:18:59+0300 info com.redmadrobot.figma-export : Fetching PNG images for scale 1.0...
2021-03-12T18:19:00+0300 info com.redmadrobot.figma-export : Fetching PNG images for scale 2.0...
2021-03-12T18:19:01+0300 info com.redmadrobot.figma-export : Fetching PNG images for scale 3.0...
2021-03-12T18:19:02+0300 info com.redmadrobot.figma-export : Fetching PNG images for scale 1.5...
2021-03-12T18:19:02+0300 info com.redmadrobot.figma-export : Fetching PNG images for scale 4.0...
2021-03-12T18:19:03+0300 info com.redmadrobot.figma-export : Processing images...
2021-03-12T18:19:03+0300 info com.redmadrobot.figma-export : Downloading remote files...
2021-03-12T18:19:04+0300 info com.redmadrobot.figma-export.file-downloader : Downloaded 1/30
2021-03-12T18:19:05+0300 info com.redmadrobot.figma-export.file-downloader : Downloaded 2/30
...

Closes #58