-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Cargo run should have a quiet
option
#653
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
pwoolcoc
added a commit
to pwoolcoc/cargo
that referenced
this issue
Nov 12, 2014
Change the `verbose` attribute of a shell from a `bool` to a `Verbosity` enum, which has `Verbose`, `Normal`, and `Quiet` variants.
pwoolcoc
added a commit
to pwoolcoc/cargo
that referenced
this issue
Nov 12, 2014
Only display these messages if verbosity is not set to `Quiet`
pwoolcoc
added a commit
to pwoolcoc/cargo
that referenced
this issue
Nov 12, 2014
Hook up the --quiet flag to the bin/run.rs subcommand
Closed
Why was this closed? What was the resolution? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cargo run
prints out a lot of extra info ("Compiling ...", "Running ...") to stdout, which sometimes is annoying if you want to pipe the output elsewhere. A--quiet
option to silence allstdout
output except that from the program itself would be nice.The text was updated successfully, but these errors were encountered: