Python之记录日志
日志级别
DEBUG: 最低级别,用于调试小细节。
INFO:记录程序中的一般事件或确认一切工作正常。
WARNING:表示可能出现的问题,但不会终止程序工作。
ERROR:用于记录错误,会导致程序失败。
CRITICAL:最高级别,表示致命错误,会导致程序完全停止工作。
例子
import logging
logging.basicConfig(filename='./logs/myLog.txt', level=logging.DEBUG, format=' %(asctime)s - %(levelname)s - %(message)s')
logging.debug('Start of program')
def factorial(n):
logging.debug('Start of factorial(%s)' % n)
total = 1
for i in range(1, n + 1):
total *= i
logging.debug('i is ' + str(i) + ', total is ' + str(total))
logging.debug('End of factorial(%s)' % n)
return total
print(factorial(5))
logging.debug('End of program')
运行
120