Answers for "generating log file"

14

making log files in python

#my youtube channel :- 
#https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A/videos
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

logger format

formatter = logging.Formatter('[%(asctime)s] p%(process)s {%(pathname)s:%(lineno)d} %(levelname)s - %(message)s','%m-%d %H:%M:%S')
Posted by: Guest on July-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language