1
0
mirror of synced 2026-08-04 17:27:13 +00:00

Make gretty samples compatible with logback 1.2.9

Closes gh-10643
This commit is contained in:
Eleftheria Stein
2021-12-20 19:06:45 +02:00
parent fa5b8c6090
commit a6cd8ba142
30 changed files with 146 additions and 0 deletions
@@ -26,3 +26,7 @@ dependencies {
integrationTestCompile seleniumDependencies
}
gretty {
logbackConfigFile = "src/main/resources/logback.xml"
}
@@ -0,0 +1,12 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
</configuration>