📜  python 日志文件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:19.480000             🧑  作者: Mango

代码示例6
import logging
logging.basicConfig(filename='example.log', encoding='utf-8', level=logging.DEBUG)
logging.debug('This message should go to the log file')
logging.info('So should this')
logging.warning('And this, too')
logging.error('And non-ASCII stuff, too, like Øresund and Malmö')