Answers for "how to create log in python"

6

making log files in python

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

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')
Posted by: Guest on October-28-2020
0

python how to use logarithm

//Logarithm Functions

print(math.log(10))
print(math.log(10, 10))
Posted by: Guest on October-01-2021

Code answers related to "how to create log in python"

Python Answers by Framework

Browse Popular Code Answers by Language