Python Module logging Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 4: Line 4:
=Configure Logging Level Externally=
=Configure Logging Level Externally=
<font color=darkkhaki>Python does not seem to have an interpreter command line option to use to set the logging level.</font>
<font color=darkkhaki>Python does not seem to have an interpreter command line option to use to set the logging level.</font>
Make this part of your application.  Parse -v|--verbose, -d|--debug, etc on command line and then set <code>logging.basicConfig(level=parsed_ogging_level)</code> in <code>main()</code>.

Revision as of 05:42, 7 July 2022

Internal

Overview

Configure Logging Level Externally

Python does not seem to have an interpreter command line option to use to set the logging level.

Make this part of your application. Parse -v|--verbose, -d|--debug, etc on command line and then set logging.basicConfig(level=parsed_ogging_level) in main().