librespeed / speedtest-cli

Command line client for LibreSpeed
GNU Lesser General Public License v3.0
485 stars 59 forks source link

output not splitted to stdout and stderr when both --json and --verbose are used #38

Closed dopstar closed 3 years ago

dopstar commented 3 years ago

wouldnt it make sense to split the output to stdout and stderr when using both --json and --verbose options so that we could do:

./librespeed-cli --json --verbose > result.json 2> librespeed.log

right now everything is mangled into stdout, if a person wants that behaviour with (both option set), they would then do

./librespeed-cli --json --verbose &> result.txt