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 2007/08/14 08:07:38 UTC

svn commit: r565632 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/BrokerView.java

Author: rajdavies
Date: Mon Aug 13 23:07:37 2007
New Revision: 565632

URL: http://svn.apache.org/viewvc?view=rev&rev=565632
Log:
temporarily comment out log4j dependency

Modified:
    activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/BrokerView.java

Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/BrokerView.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/BrokerView.java?view=diff&rev=565632&r1=565631&r2=565632
==============================================================================
--- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/BrokerView.java (original)
+++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/BrokerView.java Mon Aug 13 23:07:37 2007
@@ -30,8 +30,8 @@
 import org.apache.activemq.command.ConsumerId;
 import org.apache.activemq.command.ConsumerInfo;
 import org.apache.activemq.command.RemoveSubscriptionInfo;
-import org.apache.log4j.LogManager;
-import org.apache.log4j.PropertyConfigurator;
+//import org.apache.log4j.LogManager;
+//import org.apache.log4j.PropertyConfigurator;
 
 public class BrokerView implements BrokerViewMBean {
 
@@ -233,12 +233,14 @@
     
     //  doc comment inherited from BrokerViewMBean
     public void reloadLog4jProperties() throws Exception {
+        /*
         LogManager.resetConfiguration();
         ClassLoader cl = this.getClass().getClassLoader();
         URL log4jprops = cl.getResource("log4j.properties");
         if (log4jprops != null) {
             PropertyConfigurator.configure(log4jprops);
         }
+        */
     }