Answers for "logger logging python"

6

making log files in python

import logging
logging.basicConfig(filename='example.log', encoding='utf-8', level=logging.DEBUG)
logging.debug('This is debug message')
logging.info('This is information message')
logging.warning('This is warning message')
logging.error('This is warning message')
Posted by: Guest on July-12-2021
0

python logger exception

# Get Python error information with debug output
# logger.exception outputs a stack trace alongside the error message.

# Example

import logging
try:
    1/0
except ZeroDivisionError:
    logging.exception("error_log")
    
# Outputs
    
ERROR:root:error_log
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
ZeroDivisionError: integer division or modulo by zero
Posted by: Guest on August-12-2021

Code answers related to "logger logging python"

Python Answers by Framework

Browse Popular Code Answers by Language