Logging: log messages are sent to a file or to sys.stderr : Logging « Development « Python






Logging: log messages are sent to a file or to sys.stderr

Logging: log messages are sent to a file or to sys.stderr

import logging

logging.debug('Debugging information')
logging.info('Informational message')
logging.warning('Warning:config file %s not found', 'server.conf')
logging.error('Error occurred')
logging.critical('Critical error -- shutting down')



           
       








Related examples in the same category