You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2013/03/08 12:57:20 UTC

svn commit: r1454333 - /activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/AdvisoryTopicCleanUpTest.java

Author: gtully
Date: Fri Mar  8 11:57:20 2013
New Revision: 1454333

URL: http://svn.apache.org/r1454333
Log:
https://issues.apache.org/jira/browse/AMQ-4364 - relevant test that works ok

Modified:
    activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/AdvisoryTopicCleanUpTest.java

Modified: activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/AdvisoryTopicCleanUpTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/AdvisoryTopicCleanUpTest.java?rev=1454333&r1=1454332&r2=1454333&view=diff
==============================================================================
--- activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/AdvisoryTopicCleanUpTest.java (original)
+++ activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/AdvisoryTopicCleanUpTest.java Fri Mar  8 11:57:20 2013
@@ -137,7 +137,7 @@ public class AdvisoryTopicCleanUpTest {
         for (ActiveMQDestination destination: dests) {
             String name = destination.getPhysicalName();
             if (name.contains(queue.getPhysicalName())) {
-                LOG.debug("Destination on Broker before removing the Queue: " + name);
+                LOG.info("Destination on Broker before removing the Queue: " + name);
             }
         }
 
@@ -153,7 +153,7 @@ public class AdvisoryTopicCleanUpTest {
         {
             for (ActiveMQDestination destination: dests) {
                 String name = destination.getPhysicalName();
-                LOG.debug("Destination on broker after removing the Queue: " + name);
+                LOG.info("Destination on broker after removing the Queue: " + name);
                 assertFalse("Advisory topic should not exist. " + name,
                             name.startsWith("ActiveMQ.Advisory") && name.contains(queue.getPhysicalName()));
             }