microsoftarchive / data-pipeline

Exploring the problem of high-scale data ingestion on Azure
MIT License
6 stars 4 forks source link

Avoid using 'Write-Output' for messages intended to a user in the ps1 scripts #48

Open fsimonazzi opened 9 years ago

fsimonazzi commented 9 years ago

Write-Output is intended be used to write objects to the command pipeline. Write-Verbose is a better match for messages intended to convey progress.

fsimonazzi commented 9 years ago

http://www.jsnover.com/blog/2013/12/07/write-host-considered-harmful/