在Python中,可以使用標準庫中的logging模塊來記錄日志。以下是使用log函數的基本方法:
import logging
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')
其中,level參數指定日志記錄的級別(DEBUG、INFO、WARNING、ERROR、CRITICAL),format參數指定日志的格式。
logging.debug('This is a debug message')
logging.info('This is an info message')
logging.warning('This is a warning message')
logging.error('This is an error message')
logging.critical('This is a critical message')
以上代碼將分別記錄不同級別的日志消息,可以根據需要選擇合適的級別。
默認情況下,日志消息會輸出到控制臺。如果需要將日志寫入文件,可以通過FileHandler添加文件處理器:
file_handler = logging.FileHandler('example.log')
file_handler.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
file_handler.setFormatter(formatter)
logging.getLogger('').addHandler(file_handler)
這樣,日志消息將會被寫入example.log文件中。
以上是使用log函數記錄日志的基本方法,可以根據實際需求進行更詳細的配置和定制。