You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2005/06/28 15:50:44 UTC

svn commit: r202178 - /forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/AntBuildListener.java

Author: rgardler
Date: Tue Jun 28 06:50:43 2005
New Revision: 202178

URL: http://svn.apache.org/viewcvs?rev=202178&view=rev
Log:
remove log4j config, this is done elsewhere

Modified:
    forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/AntBuildListener.java

Modified: forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/AntBuildListener.java
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/AntBuildListener.java?rev=202178&r1=202177&r2=202178&view=diff
==============================================================================
--- forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/AntBuildListener.java (original)
+++ forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/AntBuildListener.java Tue Jun 28 06:50:43 2005
@@ -16,16 +16,9 @@
 */
 package org.apache.forrest.eclipse.job;
 
-import java.net.URL;
-
-import org.apache.forrest.eclipse.ForrestPlugin;
 import org.apache.log4j.Logger;
-import org.apache.log4j.xml.DOMConfigurator;
 import org.apache.tools.ant.BuildEvent;
 import org.apache.tools.ant.BuildListener;
-import org.eclipse.core.runtime.Path;
-import org.eclipse.core.runtime.Platform;
-import org.osgi.framework.Bundle;
 
 /**
  * A listener for Ant Builds, all events are logged to the standard logger.
@@ -42,9 +35,6 @@
 	 */
 	public AntBuildListener() {
 		super();
-		Bundle bundle = Platform.getBundle(ForrestPlugin.ID);
-		URL log4jConf = Platform.find(bundle, new Path("conf/log4j.xml"));
-		DOMConfigurator.configure(log4jConf);
 	}
 
 	/* (non-Javadoc)