Ability to suppress "Finished dev target" and "Running <path>" lines without hiding progress indicators #8743
Labels
A-console-output
Area: Terminal output, colors, progress bar, etc.
C-feature-request
Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted`
S-needs-team-input
Status: Needs input from team on whether/how to proceed.
Describe the problem you are trying to solve
I've started using
cargo run --quiet
(aliased tocr
) to avoid thelines that show up on every
cargo run
, since I often work with programs that only emit a few lines of output, and want to keep my scrollback as clean as possible, the lines are pure noise to me.However, this also gets rid of progress indicators for downloads and builds, which make it hard to tell how how long it will be until the program starts, or even if the program has started yet, if
cargo
has things to do before running.Describe the solution you'd like
A flag to just hide the Finished/Running lines that show up.
Alternatively, only show them if cargo is running in
--verbose
or had any actions to perform?Or don't show them if they would have been the only output from cargo, show them otherwise? Not sure of the best method here.
The text was updated successfully, but these errors were encountered: