Answers for "file.log"

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
7

logging.logger

import logging

logging.basicConfig(level=logging.WARNING)
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
  
logger.debug("some debugging...")
logger.error("some error...")
Posted by: Guest on December-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language