HTMLUnit删除日志

时间:2013-09-20 22:37:38

标签: logging webdriver selenium-webdriver htmlunit-driver

如何避免HtmlUnitDriver创建日志?使用默认配置,会创建许多不必要的日志。例如:

SEVERE: HtmlSpan[<span class="elementClass">] -> HtmlHtml[<html>]

我尝试过这个网站http://orjantaule.blogspot.com/2011/11/silencing-logging-output-from.html的建议(添加一个commons-logging.properties文件和一个simplelog.properties文件),但它没有用。

1 个答案:

答案 0 :(得分:0)

刚刚找到了一个解决方案groups.google.com/forum/#!topic/selenium-users/s29dz03bEyU:

&#34; ClickGuy&#34;:

&#34;在Selenium团队之前,请使用此临时修复程序。

System.setErr(new PrintStream(new OutputStream() {
    public void write(int b) {
    }
}));"