1
0

Remove forgotten debugging statement.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138880 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Craig R. McClanahan
2002-03-15 22:57:36 +00:00
parent 324af077b3
commit 4487056de8

View File

@@ -1,7 +1,7 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogFactory.java,v 1.5 2002/02/26 19:00:27 costin Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogFactory.java,v 1.6 2002/03/15 22:57:36 craigmcc Exp $
* $Revision: 1.5 $ * $Revision: 1.6 $
* $Date: 2002/02/26 19:00:27 $ * $Date: 2002/03/15 22:57:36 $
* *
* ==================================================================== * ====================================================================
* *
@@ -84,7 +84,7 @@ import java.util.Properties;
* *
* @author Craig R. McClanahan * @author Craig R. McClanahan
* @author Costin Manolache * @author Costin Manolache
* @version $Revision: 1.5 $ $Date: 2002/02/26 19:00:27 $ * @version $Revision: 1.6 $ $Date: 2002/03/15 22:57:36 $
*/ */
public abstract class LogFactory { public abstract class LogFactory {
@@ -503,7 +503,6 @@ public abstract class LogFactory {
} }
return ((LogFactory) clazz.newInstance()); return ((LogFactory) clazz.newInstance());
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace();
throw new LogConfigurationException(e); throw new LogConfigurationException(e);
} }