mirror of https://github.com/apache/activemq.git
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:
parent
0803e6308b
commit
98dcd68429
|
@ -184,6 +184,7 @@ public class CommandShellOutputFormatter implements OutputFormatter {
|
|||
*/
|
||||
public void printException(Exception e) {
|
||||
out.println("ERROR: " + e);
|
||||
e.printStackTrace(out);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue