mirror of https://github.com/apache/activemq.git
remove a few stack traces from test stdout
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@707429 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
81f0cc0d04
commit
fe50dd693f
|
@ -133,8 +133,7 @@ public class InactivityMonitorTest extends CombinationTestSupport implements Tra
|
|||
|
||||
public void onException(IOException error) {
|
||||
if (!ignoreClientError.get()) {
|
||||
LOG.info("Server transport error:");
|
||||
error.printStackTrace();
|
||||
LOG.info("Server transport error:", error);
|
||||
serverErrorCount.incrementAndGet();
|
||||
}
|
||||
}
|
||||
|
@ -152,7 +151,7 @@ public class InactivityMonitorTest extends CombinationTestSupport implements Tra
|
|||
}
|
||||
|
||||
public void onAcceptError(Exception error) {
|
||||
error.printStackTrace();
|
||||
LOG.trace(error);
|
||||
}
|
||||
|
||||
public void testClientHang() throws Exception {
|
||||
|
|
|
@ -61,7 +61,6 @@ public class TransportUriTest extends EmbeddedBrokerTestSupport {
|
|||
connection.start();
|
||||
fail("Should have thrown an exception!");
|
||||
} catch (Exception expected) {
|
||||
expected.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue