temporarily comment out log4j dependency

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@565632 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2007-08-14 06:07:37 +00:00
parent dbbd364393
commit 54c8eeb842
1 changed files with 4 additions and 2 deletions

View File

@ -30,8 +30,8 @@ import org.apache.activemq.command.ActiveMQTopic;
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 @@ public class BrokerView implements BrokerViewMBean {
// 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);
}
*/
}