This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 67682418b7bfa668dfa45ddf51549b636bfe5525 Author: Benoit Tellier <[email protected]> AuthorDate: Wed May 11 14:15:43 2022 +0700 [FIX] Filter non error logs as done previously Mistakenly commited change need to be reverted --- testing/base/src/main/resources/logback-test.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testing/base/src/main/resources/logback-test.xml b/testing/base/src/main/resources/logback-test.xml index 1fe8d21504..ddcf72c376 100644 --- a/testing/base/src/main/resources/logback-test.xml +++ b/testing/base/src/main/resources/logback-test.xml @@ -18,6 +18,9 @@ <pattern>%d{HH:mm:ss.SSS} [%-5level] %logger{15} - %msg%n%rEx</pattern> </encoder> <immediateFlush>false</immediateFlush> + <filter class="ch.qos.logback.classic.filter.ThresholdFilter"> + <level>ERROR</level> + </filter> </appender> <root level="WARN"> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
