Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit afefc7a

Browse files
authored
Add a very-verbose input (#14)
1 parent 056b491 commit afefc7a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/etos_client/__main__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,15 @@ def parse_args(args):
137137
"-v",
138138
"--verbose",
139139
dest="loglevel",
140+
help="set loglevel to INFO",
141+
action="store_const",
142+
default=logging.WARNING,
143+
const=logging.INFO,
144+
)
145+
parser.add_argument(
146+
"-vv",
147+
"--very-verbose",
148+
dest="loglevel",
140149
help="set loglevel to DEBUG",
141150
action="store_const",
142151
default=logging.WARNING,

0 commit comments

Comments
 (0)