在Python中,你可以使用內置的logging
模塊來記錄日志。以下是一個簡單的示例,展示了如何在Python腳本中使用日志記錄:
import logging
# 配置日志記錄器
logging.basicConfig(filename='example.log', level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')
# 記錄日志
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')
在這個示例中,我們首先導入了logging
模塊。然后,我們使用basicConfig
方法配置了日志記錄器。這里,我們將日志記錄到名為example.log
的文件中,設置了日志級別為DEBUG
,并定義了日志消息的格式。
接下來,我們使用不同級別的日志方法(如debug
、info
、warning
、error
和critical
)記錄了不同級別的日志消息。這些消息將被寫入到example.log
文件中。
當你運行這個腳本時,你會在當前目錄下看到一個名為example.log
的文件,其中包含了你記錄的日志消息。