Stderr is unconditionally redirected
andylizi opened this issue · 1 comments
andylizi commented
Description
Contents of stderr will always be sliently redirected and consumed.
Reproduction
cargo build outputs are printed to stderr, so we can use it as a demo:
run_cmd!(cargo build).unwrap();Run it and nothing happens.
The Cause
In bd7837f, an attempt to fix logging for stderr:
Lines 464 to 467 in f125db8
rust-shell-script commented
It is intentional. You need to set up a logger to show it. See readme.