共计 560 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 logging
模块来写日志到文件。下面是一个简单的例子:
import logging
# 配置日志记录器
logging.basicConfig(filename='app.log', level=logging.INFO)
# 记录日志
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()
函数用于配置日志记录器,其中 filename
参数指定了日志文件的路径和名称,level
参数指定了日志的级别(例如,logging.INFO
表示只记录 INFO
级别及以上的日志)。然后,可以使用 logging.debug()
、logging.info()
等函数来记录不同级别的日志。
丸趣 TV 网 – 提供最优质的资源集合!
正文完