From eae2711d8d608f415e474ab203a6bb2654dd46d4 Mon Sep 17 00:00:00 2001 From: Hergy Fongue Date: Sat, 30 Sep 2023 15:19:50 +0200 Subject: [PATCH] docs(rust): improve help of global verbose flag in ockam command --- implementations/rust/ockam/ockam_command/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/implementations/rust/ockam/ockam_command/src/lib.rs b/implementations/rust/ockam/ockam_command/src/lib.rs index 087f5afe5d5..225554f42aa 100644 --- a/implementations/rust/ockam/ockam_command/src/lib.rs +++ b/implementations/rust/ockam/ockam_command/src/lib.rs @@ -167,6 +167,8 @@ pub struct GlobalArgs { global = true, long, short, + long_help("Increase verbosity of trace messages by repeating the flag. Use `-v` to show \ + info messages, `-vv` to show debug messages, and `-vvv` to show trace messages"), action = ArgAction::Count )] verbose: u8,