Mention quiet mode in debug output

This commit is contained in:
timvisee 2018-11-21 21:57:12 +01:00
parent 5ac3cd4b15
commit 7bbd74002b
No known key found for this signature in database
GPG key ID: 109CBA0BF74036C2

View file

@ -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:"),