Merge branch 'feature-2.4/LoggingForUITests' into 'release/V2.4'

Feature 2.4/logging for ui tests

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.

See merge request !494
This commit is contained in:
Tom Page
2016-09-16 15:57:15 +01:00

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>