Added -v flag to parser, so user don't have to use whole --verbose flag to increase verbosity

Change-Id: I55502f244a4492b0f3e03008ff15c14c6ffabeb7
This commit is contained in:
Franciszek Przewozny 2021-09-21 09:44:59 +02:00
parent 39b03f0f95
commit 121c23a3a0
1 changed files with 2 additions and 1 deletions

View File

@ -101,7 +101,8 @@ def parse_args():
help="usually basedisk or cluster")
parser.add_argument('-p', '--provider', metavar='PROVIDER', nargs='?',
help='Either virtualbox (VirtualBox) or kvm (KVM)')
parser.add_argument('--verbose', action='store_true')
parser.add_argument('-v', '--verbose', action='store_true',
help='Increase log verbosity')
return parser.parse_args()