Skip to content
Snippets Groups Projects
Commit a41b5eb8 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[bootstrap] Initialize verbosity option

parent fb5fa476
No related branches found
No related tags found
No related merge requests found
......@@ -360,11 +360,11 @@ if __name__ == '__main__':
parser.add_argument('-t', '--tag',
default=os.environ.get('CI_COMMIT_TAG', None),
help='If building a tag, pass it with this flag [default: %(default)s]')
parser.add_argument('--verbose', '-v', action='count',
parser.add_argument('--verbose', '-v', action='count', default=0,
help='Increases the verbosity level. We always prints error and ' \
'critical messages. Use a single ``-v`` to enable warnings, ' \
'two ``-vv`` to enable information messages and three ``-vvv`` ' \
'to enable debug messages')
'to enable debug messages [default: %(default)s]')
args = parser.parse_args()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment