Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Pykka 记录到一个名为pykka. 我希望将所有异常、调试消息打印到控制台,尤其是在运行用 Mamba 编写的 Pykka 启动和停止actors 的测试时。
pykka
我该怎么做呢?
在调用测试运行程序之前,您应该能够在任何运行测试的脚本中调用logging.basicConfig(level=logging.DEBUG)该子句。if __name__ == '__main__'您可以传递其他关键字参数来basicConfig()控制消息的格式,如此处所述。
logging.basicConfig(level=logging.DEBUG)
if __name__ == '__main__'
basicConfig()