Back to snippets

python_logging_module_basic_console_severity_levels.py

python

Demonstrates basic logging to the console with different severity

19d ago4 linesdocs.python.org
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