I know the --verbose or -v from several tools and I\'d like to implement this into some of my own scripts and tools.
--verbose
-v
I thought of placing:<
What I do in my scripts is check at runtime if the 'verbose' option is set, and then set my logging level to debug. If it's not set, I set it to info. This way you don't have 'if verbose' checks all over your code.