Skip to content
Snippets Groups Projects
Commit 9b34ccd2 authored by Administrator's avatar Administrator
Browse files

Do not require -v

parent beec5311
Branches
No related tags found
No related merge requests found
......@@ -438,7 +438,7 @@ def main():
2: logging.INFO,
3: logging.DEBUG
}
loglevel = loglevels[min(3, max(0, args.verbose))]
loglevel = loglevels[min(3, max(0, args.verbose or 0))]
logging.basicConfig(level=loglevel)
Config.parse(Config.load())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment