共计 613 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用内置的 logging 模块来打印日志文件。以下是一个简单的示例代码:
import logging
# 设置日志级别
logging.basicConfig(filename='example.log', level=logging.DEBUG)
# 打印日志信息
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()
来设置日志文件名称和日志级别。然后使用 logging.debug()
,logging.info()
,logging.warning()
,logging.error()
和logging.critical()
方法来打印不同级别的日志信息到文件中。
运行该代码后,将在当前目录下生成一个名为 example.log
的日志文件,并在文件中记录相应级别的日志信息。
丸趣 TV 网 – 提供最优质的资源集合!
正文完