summaryrefslogtreecommitdiffstats
path: root/sqv/src/sqv_cli.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_cli.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_cli.rs')
-rw-r--r--sqv/src/sqv_cli.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/sqv/src/sqv_cli.rs b/sqv/src/sqv_cli.rs
index 5d947d47..ee4eebc1 100644
--- a/sqv/src/sqv_cli.rs
+++ b/sqv/src/sqv_cli.rs
@@ -42,9 +42,10 @@ pub fn build() -> App<'static, 'static> {
.arg(Arg::with_name("file").value_name("FILE")
.help("File to verify.")
.required(true))
- .arg(Arg::with_name("trace")
- .help("Trace execution.")
- .long("trace"))
+ .arg(Arg::with_name("verbose")
+ .help("Be verbose.")
+ .long("verbose")
+ .short("v"))
.after_help(
"TIMESTAMPs must be given in ISO 8601 format \
(e.g. '2017-03-04T13:25:35Z', '2017-03-04T13:25', \