1
0

removing assert(), since that's a reserved keyword in JDK 1.4

we can add it back later once log4j settles on a new method name


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138809 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rodney Waldhoff
2001-08-07 17:37:22 +00:00
parent 2f77a01e23
commit 0e1807129a
4 changed files with 4 additions and 14 deletions

View File

@@ -11,10 +11,9 @@ package org.apache.commons.httpclient.log;
/**
* A simple logging interface abstracting log4j.
* @author Rod Waldhoff
* @version $Id: Log.java,v 1.2 2001/08/02 22:14:41 rwaldhoff Exp $
* @version $Id: Log.java,v 1.3 2001/08/07 17:37:22 rwaldhoff Exp $
*/
public interface Log {
public void assert(boolean assertion, String msg);
public void debug(Object message);
public void debug(Object message, Throwable t);
public void info(Object message);