You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2014/12/02 21:37:18 UTC

[30/50] [abbrv] accumulo git commit: ACCUMULO-3167 Better logging on error.

ACCUMULO-3167 Better logging on error.


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/fb8c7e7d
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/fb8c7e7d
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/fb8c7e7d

Branch: refs/heads/metrics2
Commit: fb8c7e7d0e5dd011306537a41fb810d455504248
Parents: 6169d88
Author: Josh Elser <el...@apache.org>
Authored: Mon Nov 24 17:51:30 2014 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Mon Nov 24 18:10:08 2014 -0500

----------------------------------------------------------------------
 .../accumulo/cluster/standalone/StandaloneClusterControl.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/fb8c7e7d/minicluster/src/main/java/org/apache/accumulo/cluster/standalone/StandaloneClusterControl.java
----------------------------------------------------------------------
diff --git a/minicluster/src/main/java/org/apache/accumulo/cluster/standalone/StandaloneClusterControl.java b/minicluster/src/main/java/org/apache/accumulo/cluster/standalone/StandaloneClusterControl.java
index 50b8f60..733f8d0 100644
--- a/minicluster/src/main/java/org/apache/accumulo/cluster/standalone/StandaloneClusterControl.java
+++ b/minicluster/src/main/java/org/apache/accumulo/cluster/standalone/StandaloneClusterControl.java
@@ -256,7 +256,7 @@ public class StandaloneClusterControl implements ClusterControl {
 
     Entry<Integer,String> pair = exec(hostname, stopCmd);
     if (0 != pair.getKey()) {
-      throw new IOException("Signal " + signal + " to " + server + " on " + hostname + " failed for execute successfully");
+      throw new IOException("Signal " + signal + " to " + server + " on " + hostname + " failed for execute successfully. stdout=" + pair.getValue());
     }
   }