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 2018/12/10 16:32:54 UTC

[accumulo] branch master updated: Log mini classpath at debug #703

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

kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new 870d0ad  Log mini classpath at debug #703
870d0ad is described below

commit 870d0ad9484defd94a2e14371a6b771de50caa92
Author: Keith Turner <kt...@apache.org>
AuthorDate: Mon Dec 10 11:32:37 2018 -0500

    Log mini classpath at debug #703
---
 .../org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java b/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
index 2c840ce..fb4a3aa 100644
--- a/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
+++ b/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
@@ -330,7 +330,7 @@ public class MiniAccumuloClusterImpl implements AccumuloCluster {
     if (config.getHadoopConfDir() != null)
       builder.environment().put("HADOOP_CONF_DIR", config.getHadoopConfDir().getAbsolutePath());
 
-    log.info("Starting MiniAccumuloCluster process with class: " + clazz.getSimpleName()
+    log.debug("Starting MiniAccumuloCluster process with class: " + clazz.getSimpleName()
         + "\n, jvmOpts: " + extraJvmOpts + "\n, classpath: " + classpath + "\n, args: " + argList
         + "\n, environment: " + builder.environment());
     Process process = builder.start();