Created
November 10, 2015 08:48
-
-
Save jredrejo/794ba6002de0b94d5f5b to your computer and use it in GitHub Desktop.
Using repeatable -v and -q to select the logging level in Python scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parser.add_argument('-v', '--verbose', action='count', default=0) | |
parser.add_argument('-q', '--quiet', action='count', default=0) | |
logging_level = logging.WARN + 10*args.quiet - 10*args.verbose | |
# script -vv -> DEBUG | |
# script -v -> INFO | |
# script -> WARNING | |
# script -q -> ERROR | |
# script -qq -> CRITICAL | |
# script -qqq -> no logging at all | |
# From https://www.reddit.com/r/Python/comments/3nctlm/what_python_tools_should_i_be_using_on_every/cvn0ybf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment