Skip to content

Instantly share code, notes, and snippets.

@jredrejo
Created November 10, 2015 08:48
Show Gist options
  • Save jredrejo/794ba6002de0b94d5f5b to your computer and use it in GitHub Desktop.
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
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