You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ra...@apache.org on 2006/12/27 08:43:43 UTC

svn commit: r490454 - /incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterBroker.java

Author: rajdavies
Date: Tue Dec 26 23:43:43 2006
New Revision: 490454

URL: http://svn.apache.org/viewvc?view=rev&rev=490454
Log:
forgot to remove the sophisticated debuging code - oops

Modified:
    incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterBroker.java

Modified: incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterBroker.java
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterBroker.java?view=diff&rev=490454&r1=490453&r2=490454
==============================================================================
--- incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterBroker.java (original)
+++ incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterBroker.java Tue Dec 26 23:43:43 2006
@@ -349,9 +349,7 @@
 
     protected void sendSyncToSlave(Command command){
         try{
-            System.err.println("SEMNDING SYNC "+command);
             Response response=(Response)slave.request(command);
-            System.out.println("GOT RESPONSE "+response);
             if(response.isException()){
                 ExceptionResponse er=(ExceptionResponse)response;
                 log.error("Slave Failed",er.getException());