Issue
Download progress such as:
is outputted to standard output (stdout). This means for instance that the progress is captured by report generators. Outputting to standard error (stderr) avoids this.
Troubleshooting
This is because cat() and utils::txtProgressBar() are called with defaults, which results in output to stdout. Passing file=stderr() to these functions would probably be enough.
Related code issues: Issue #344