Mention quiet mode in debug output
This commit is contained in:
parent
5ac3cd4b15
commit
7bbd74002b
1 changed files with 6 additions and 0 deletions
|
@ -79,6 +79,12 @@ impl<'a> Debug<'a> {
|
|||
Cell::new(&features_list().join(", ")),
|
||||
]));
|
||||
|
||||
// Show whether quiet is used
|
||||
table.add_row(Row::new(vec![
|
||||
Cell::new("Quiet:"),
|
||||
Cell::new(format_bool(matcher_main.quiet())),
|
||||
]));
|
||||
|
||||
// Show whether verbose is used
|
||||
table.add_row(Row::new(vec![
|
||||
Cell::new("Verbose:"),
|
||||
|
|
Loading…
Add table
Reference in a new issue