如何关闭 htmlunit 的详细报告?
htmlunit 报告从 css 到页面上的解析错误的所有内容。
如何让这个沉默?
htmlunit reports everything from css, to parsing errors on a page.
how to silence this ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将这些放在声明 webClient 之后
Put these after declaring webClient
HTMLUnit 使用 Apache commons 日志记录,它将实际日志记录委托给“真正的”日志记录框架或标准 java 框架。
如果您的应用程序使用 log4j,您可以使用它来减少 htmlunit 的干扰。
更多详细信息可以在文档的日志页面上找到
HTMLUnit uses Apache commons logging which delegates actual logging to a "real" logging framework, or the standard java one.
If your application uses log4j you can use that to reduce the chattiness of htmlunit.
More details can be found on the logging page of the docs
HTMLUnit 使用标准 JAVA 记录器。
要禁用它,请在代码中包含以下行。
HTMLUnit uses standard JAVA logger.
To disable it include the following line in your code.