summaryrefslogtreecommitdiffstats
path: root/sqv/src/sqv.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-02-06 15:58:33 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-02-06 16:19:48 +0100
commit4777c88b9db0b5fe7db061bc24c56ed797c9e48a (patch)
treeeb5ccf4b4e14a77d58dbd3a4dadc29c149c92f0b /sqv/src/sqv.rs
parent5b95ceeb0109e5036d9b403fcff689f4e29f107e (diff)
sqv: Rename flag --trace to --verbose.
- All the trace messages are gone except for the summary.
Diffstat (limited to 'sqv/src/sqv.rs')
-rw-r--r--sqv/src/sqv.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqv/src/sqv.rs b/sqv/src/sqv.rs
index 44dad359..8c68cd0c 100644
--- a/sqv/src/sqv.rs
+++ b/sqv/src/sqv.rs
@@ -225,7 +225,7 @@ fn real_main() -> Result<()> {
let matches = sqv_cli::build().get_matches();
- let trace = matches.is_present("trace");
+ let verbose = matches.is_present("verbose");
let good_threshold
= if let Some(good_threshold) = matches.value_of("signatures") {
@@ -280,7 +280,7 @@ fn real_main() -> Result<()> {
let h = v.into_helper();
- if trace {
+ if verbose {
eprintln!("{} of {} signatures are valid (threshold is: {}).",
h.good, h.total, good_threshold);
}