diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-02-20 10:55:24 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-02-20 10:55:24 -0800 |
commit | ffcbe3479325bc98d008f2da3e7e4a525d1d065a (patch) | |
tree | 601e3ab90be015b0aab2b0fe14946199cb007a5c /lib/chef/application | |
parent | 28653b9a54427dc295d8f3be31b032bc556e7b59 (diff) | |
download | chef-ffcbe3479325bc98d008f2da3e7e4a525d1d065a.tar.gz |
Fix our verbosity help
It's 3 times for the max now.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/application')
-rw-r--r-- | lib/chef/application/knife.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/application/knife.rb b/lib/chef/application/knife.rb index 10634176c4..bfb301957e 100644 --- a/lib/chef/application/knife.rb +++ b/lib/chef/application/knife.rb @@ -46,7 +46,7 @@ class Chef::Application::Knife < Chef::Application option :verbosity, short: "-V", long: "--verbose", - description: "More verbose output. Use twice for max verbosity.", + description: "More verbose output. Use twice (-VV) for additional verbosity and three times (-VVV) for maximum verbosity.", proc: Proc.new { verbosity_level += 1 }, default: 0 |