浏览代码

Mention quiet mode in debug output

timvisee 6 年之前
父节点
当前提交
7bbd74002b
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      src/action/debug.rs

+ 6 - 0
src/action/debug.rs

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