如何在 Python 中显示日志消息

How to show logging message in Python

我需要在调试时显示日志消息 我应该怎么做才能使用如下代码显示消息:

logs.out("Here are the error messages")
logs.clear()

您应该使用日志库, 这是一个例子:

import logging

logging.debug('debug message')
logging.info('information message')
logging.warning('A warning message')
logging.error('Error Description')
logging.critical('Critical messages should be here')

如果您更喜欢只输出一些常见的日志记录文本,那么您可以选择 Python 的 print() 功能,否则您想要以正确的方式记录日志您可以使用 Python 本身提供的 logging API 作为库。

`

import logging
logging.basicConfig(filename='example.log', level=logging.debug)
logging.debug("Debugging")

`