我在yml测试运行期间在日志中收到此错误:
close failed in file object destructor:
sys.excepthook is missing
lost sys.stderr
我认为可能无法妥善处理某些异常。
答案 0 :(得分:0)
我发现在YML测试中使用print函数时会发生这种情况。
How to silence "sys.excepthook is missing" error?
登录的正确方法是使用记录器:
import logging
_logger = logging.getLogger('TEST')
_logger.info('log message')