log the exception stack trace when the activemq script fails - see AMQ-790 for detail

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@418766 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-07-03 13:30:16 +00:00
parent 0803e6308b
commit 98dcd68429
1 changed files with 1 additions and 0 deletions

View File

@ -184,6 +184,7 @@ public class CommandShellOutputFormatter implements OutputFormatter {
*/
public void printException(Exception e) {
out.println("ERROR: " + e);
e.printStackTrace(out);
}
/**