从导入的 python 文件中捕获日志消息
从导入的 python 文件获取日志信息。
我正在构建一个基于 python 的测试套件。 使用 __import 函数调用测试 我想在我的测试应用程序中捕获日志消息(在测试中)。日志消息是使用 python 日志模块生成的。 我怎样才能做到这一点?例如在伪代码中:
for test in testList:
# do something
# Import Test
testid = __import__(test)
testOut = testid.run(parameter1,parameter2)
print " => Result: %s\n" % testOut
# capture logging information from test which imports logging and append to wxpython window
Getting logging information from an imported python file.
I am building a python based test suite.
The tests are called using __import function
I would like to capture the logging messages (in tests) in my test application. The logging messages are generated by using the python logging module.
How can I do that ? For example in psuedo code:
for test in testList:
# do something
# Import Test
testid = __import__(test)
testOut = testid.run(parameter1,parameter2)
print " => Result: %s\n" % testOut
# capture logging information from test which imports logging and append to wxpython window
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以轻松创建自定义日志记录处理程序并将其分配给模块使用的记录器。
请参阅 http://docs.python.org/library/logging.html#handler-对象
You can easily create a custom logging handler and assign it to the logger used by your module.
See http://docs.python.org/library/logging.html#handler-objects