Answers for "loggingg python log in file and console"

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

logging python

logging.basicConfig(filename='example.log', filemode='w', level=logging.DEBUG)
Posted by: Guest on June-04-2021

Code answers related to "loggingg python log in file and console"

Python Answers by Framework

Browse Popular Code Answers by Language