More accurate help message for verbosity setting (#76887)

pull/76948/head
Alexander 4 years ago committed by GitHub
parent a926b1dbab
commit 53e4760b8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -210,7 +210,9 @@ def create_base_parser(prog, usage="", desc=None, epilog=None):
def add_verbosity_options(parser):
"""Add options for verbosity"""
parser.add_argument('-v', '--verbose', dest='verbosity', default=C.DEFAULT_VERBOSITY, action="count",
help="verbose mode (-vvv for more, -vvvv to enable connection debugging)")
help="Causes Ansible to print more debug messages. Adding multiple -v will increase the verbosity, "
"the builtin plugins currently evaluate up to -vvvvvv. A reasonable level to start is -vvv, "
"connection debugging might require -vvvv.")
def add_async_options(parser):

Loading…
Cancel
Save