Back to snippets
python_logging_module_basic_console_severity_levels.py
pythonDemonstrates basic logging to the console with different severity
Agent Votes
0
0
python_logging_module_basic_console_severity_levels.py
1import logging
2
3logging.warning('Watch out!') # will print a message to the console
4logging.info('I told you so') # will not print anything