python log function code example
Example 1: log2 in python
math.log2(x) #x is a number
Example 2: create log in python
logging.basicConfig(filename="logfilename.log", level=logging.INFO)
# Log Creation
logging.info('your text goes here')
logging.error('your text goes here')
logging.debug('your text goes here')