You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ch...@apache.org on 2018/08/02 09:15:48 UTC

[incubator-openwhisk] branch master updated: Tune down excessive Zookeeper logging in tests. (#3935)

This is an automated email from the ASF dual-hosted git repository.

chetanm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 8e6d469  Tune down excessive Zookeeper logging in tests. (#3935)
8e6d469 is described below

commit 8e6d4695d59a5f0951484f9d902b1ee549107f2b
Author: Markus Thömmes <ma...@me.com>
AuthorDate: Thu Aug 2 11:15:45 2018 +0200

    Tune down excessive Zookeeper logging in tests. (#3935)
    
    Change log level for zookeeper and curator to ERROR for test runs
---
 tests/src/test/resources/logback-test.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/src/test/resources/logback-test.xml b/tests/src/test/resources/logback-test.xml
index ae31af6..ee750fa 100644
--- a/tests/src/test/resources/logback-test.xml
+++ b/tests/src/test/resources/logback-test.xml
@@ -13,6 +13,10 @@
     <!-- Kafka -->
     <logger name="org.apache.kafka" level="ERROR" />
 
+    <!-- Zookeeper -->
+    <logger name="org.apache.zookeeper" level="ERROR" />
+    <logger name="org.apache.curator" level="ERROR" />
+
     <logger name="akka.event.slf4j.Slf4jLogger" level="WARN" />
 
     <root level="${logback.log.level:-INFO}">