This is an automated email from the ASF dual-hosted git repository. olli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-integration-tests.git
commit e18546f140a2e6edb755b9719690d92f83910778 Author: Oliver Lietz <[email protected]> AuthorDate: Tue Mar 23 09:33:58 2021 +0100 SLING-10051 Stabilize integration tests running on ci-builds switch log level from DEBUG to WARN to reduce I/O --- src/main/java/org/apache/sling/karaf/testing/KarafTestSupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/sling/karaf/testing/KarafTestSupport.java b/src/main/java/org/apache/sling/karaf/testing/KarafTestSupport.java index adeb1a0..fea0cf8 100644 --- a/src/main/java/org/apache/sling/karaf/testing/KarafTestSupport.java +++ b/src/main/java/org/apache/sling/karaf/testing/KarafTestSupport.java @@ -140,7 +140,7 @@ public abstract class KarafTestSupport { .unpackDirectory(new File(unpackDirectory)), keepRuntimeFolder(), editConfigurationFilePut("etc/org.apache.sling.jcr.base.internal.LoginAdminWhitelist.config", "whitelist.bundles.regexp", "^PAXEXAM.*$|^org.apache.sling.(launchpad|junit).*$"), - editConfigurationFilePut("etc/org.ops4j.pax.logging.cfg", "log4j2.rootLogger.level", "DEBUG"), + editConfigurationFilePut("etc/org.ops4j.pax.logging.cfg", "log4j2.rootLogger.level", "WARN"), editConfigurationFilePut("etc/org.apache.karaf.management.cfg", "rmiRegistryPort", Integer.toString(rmiRegistryPort)), editConfigurationFilePut("etc/org.apache.karaf.management.cfg", "rmiServerPort", Integer.toString(rmiServerPort)), editConfigurationFilePut("etc/org.apache.karaf.shell.cfg", "sshPort", Integer.toString(sshPort)),
