Author: wglass Date: Sat Oct 1 18:30:30 2005 New Revision: 293051 URL: http://svn.apache.org/viewcvs?rev=293051&view=rev Log: bizarrely, I missed this in the VELOCITY-403 patch.
I suspect all the delete/add combinations caused patch to miss the changes. Modified: jakarta/velocity/core/trunk/src/java/org/apache/velocity/runtime/RuntimeLogger.java Modified: jakarta/velocity/core/trunk/src/java/org/apache/velocity/runtime/RuntimeLogger.java URL: http://svn.apache.org/viewcvs/jakarta/velocity/core/trunk/src/java/org/apache/velocity/runtime/RuntimeLogger.java?rev=293051&r1=293050&r2=293051&view=diff ============================================================================== --- jakarta/velocity/core/trunk/src/java/org/apache/velocity/runtime/RuntimeLogger.java (original) +++ jakarta/velocity/core/trunk/src/java/org/apache/velocity/runtime/RuntimeLogger.java Sat Oct 1 18:30:30 2005 @@ -17,38 +17,32 @@ */ /** - * Interface for internal runtime logging services that are needed by the + * Interface for internal runtime logging services. This will hopefully + * be dissolved into the Log class at some point soon. * * @author <a href="mailto:[EMAIL PROTECTED]">Geir Magusson Jr.</a> * @version $Id$ + * @deprecated This functionality has been taken over by the Log class */ public interface RuntimeLogger { /** - * Log a warning message. - * - * @param Object message to log + * @deprecated Use Log.warn(Object) */ public void warn(Object message); /** - * Log an info message. - * - * @param Object message to log + * @deprecated Use Log.warn(Object) */ public void info(Object message); /** - * Log an error message. - * - * @param Object message to log + * @deprecated Use Log.warn(Object) */ public void error(Object message); /** - * Log a debug message. - * - * @param Object message to log + * @deprecated Use Log.warn(Object) */ public void debug(Object message); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]