We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acad699 commit 55d9f91Copy full SHA for 55d9f91
src/cargo/core/shell.rs
@@ -52,11 +52,17 @@ impl MultiShell {
52
}
53
54
pub fn say<T: ToString>(&mut self, message: T, color: Color) -> IoResult<()> {
55
- self.out().say(message, color)
+ match self.verbosity {
56
+ Quiet => Ok(()),
57
+ _ => self.out().say(message, color)
58
+ }
59
60
61
pub fn status<T: Show, U: Show>(&mut self, status: T, message: U) -> IoResult<()> {
- self.out().say_status(status, message, GREEN)
62
63
64
+ _ => self.out().say_status(status, message, GREEN)
65
66
67
68
pub fn verbose(&mut self, callback: Callback) -> IoResult<()> {
0 commit comments