Use console logging when running UI tests.

Redirect java.util.logging to slf4j, and reduce the noise from Selenium
down to just warnings and errors.
This commit is contained in:
Tom Page
2016-09-15 09:55:23 +01:00
parent 16e4096518
commit a5325e8cb1

View File

@@ -173,6 +173,17 @@
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>1.7.21</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>