mirror of https://github.com/apache/activemq.git
disabled logging to System.err to tidy up the test run in maven
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@511791 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3013c2020b
commit
12a5355b2c
|
@ -124,7 +124,9 @@ public class JmsDurableTopicSlowReceiveTest extends JmsTopicSendReceiveTest{
|
|||
message.setJMSType("test");
|
||||
producer2.send(consumerDestination2,message);
|
||||
Thread.sleep(50);
|
||||
System.err.println("Sent("+loop+"): "+i);
|
||||
if (verbose) {
|
||||
System.err.println("Sent("+loop+"): "+i);
|
||||
}
|
||||
}
|
||||
producer2.close();
|
||||
connection2.stop();
|
||||
|
@ -154,7 +156,9 @@ public class JmsDurableTopicSlowReceiveTest extends JmsTopicSendReceiveTest{
|
|||
msg=consumer3.receive(10000);
|
||||
if(msg==null)
|
||||
break;
|
||||
System.err.println("Received("+loop+"): "+i);
|
||||
if (verbose) {
|
||||
System.err.println("Received("+loop+"): "+i);
|
||||
}
|
||||
Thread.sleep(500);
|
||||
msg.acknowledge();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue