


# https://www.globalsino.com/ICs/
# Create a log file to monitor script execution

import logging

logging.basicConfig(filename="log.log", level=logging.INFO)

logging.info('The program starts ... ')
logging.error('There is an error ... ')

logging.error('There is an error ... ')
logging.debug('The tool is debugging ... ')
