You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2013/02/06 18:38:45 UTC

svn commit: r1443085 - in /accumulo/trunk/test/src/test/java/org/apache/accumulo: fate/zookeeper/ZooLockTest.java test/MiniAccumuloClusterTest.java

Author: kturner
Date: Wed Feb  6 17:38:45 2013
New Revision: 1443085

URL: http://svn.apache.org/viewvc?rev=1443085&view=rev
Log:
ACCUMULO-954 suppressed warnings from zookeeper during unit test

Modified:
    accumulo/trunk/test/src/test/java/org/apache/accumulo/fate/zookeeper/ZooLockTest.java
    accumulo/trunk/test/src/test/java/org/apache/accumulo/test/MiniAccumuloClusterTest.java

Modified: accumulo/trunk/test/src/test/java/org/apache/accumulo/fate/zookeeper/ZooLockTest.java
URL: http://svn.apache.org/viewvc/accumulo/trunk/test/src/test/java/org/apache/accumulo/fate/zookeeper/ZooLockTest.java?rev=1443085&r1=1443084&r2=1443085&view=diff
==============================================================================
--- accumulo/trunk/test/src/test/java/org/apache/accumulo/fate/zookeeper/ZooLockTest.java (original)
+++ accumulo/trunk/test/src/test/java/org/apache/accumulo/fate/zookeeper/ZooLockTest.java Wed Feb  6 17:38:45 2013
@@ -83,7 +83,7 @@ public class ZooLockTest {
     
     folder.create();
     
-    Logger.getLogger("org.apache.zookeeper").setLevel(Level.WARN);
+    Logger.getLogger("org.apache.zookeeper").setLevel(Level.ERROR);
     
     accumulo = new MiniAccumuloCluster(folder.getRoot(), "superSecret");
     

Modified: accumulo/trunk/test/src/test/java/org/apache/accumulo/test/MiniAccumuloClusterTest.java
URL: http://svn.apache.org/viewvc/accumulo/trunk/test/src/test/java/org/apache/accumulo/test/MiniAccumuloClusterTest.java?rev=1443085&r1=1443084&r2=1443085&view=diff
==============================================================================
--- accumulo/trunk/test/src/test/java/org/apache/accumulo/test/MiniAccumuloClusterTest.java (original)
+++ accumulo/trunk/test/src/test/java/org/apache/accumulo/test/MiniAccumuloClusterTest.java Wed Feb  6 17:38:45 2013
@@ -57,7 +57,7 @@ public class MiniAccumuloClusterTest {
 
     folder.create();
     
-    Logger.getLogger("org.apache.zookeeper").setLevel(Level.WARN);
+    Logger.getLogger("org.apache.zookeeper").setLevel(Level.ERROR);
 
     accumulo = new MiniAccumuloCluster(folder.getRoot(), "superSecret");