You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2004/12/17 12:37:29 UTC

cvs commit: ant/src/main/org/apache/tools/ant/util TaskLogger.java

bodewig     2004/12/17 03:37:29

  Modified:    src/main/org/apache/tools/ant/util TaskLogger.java
  Log:
  style - by Kevin Jackson
  
  Revision  Changes    Path
  1.10      +33 -10    ant/src/main/org/apache/tools/ant/util/TaskLogger.java
  
  Index: TaskLogger.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/util/TaskLogger.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- TaskLogger.java	9 Mar 2004 16:48:52 -0000	1.9
  +++ TaskLogger.java	17 Dec 2004 11:37:29 -0000	1.10
  @@ -20,37 +20,60 @@
   import org.apache.tools.ant.Task;
   
   /**
  - * A facade that makes logging nicers to use.
  - *
  + * A facade that makes logging nicer to use.
    * @version $Revision$ $Date$
    */
   public final class TaskLogger {
       /**
        * Task to use to do logging.
        */
  -    private Task m_task;
  +    private Task task;
   
  +    /**
  +     * Constructor for the TaskLogger
  +     * @param task the task
  +     */
       public TaskLogger(final Task task) {
  -        this.m_task = task;
  +        this.task = task;
       }
   
  +    /**
  +     * Log a message with <code>MSG_INFO</code> priority
  +     * @param message the message to log
  +     */
       public void info(final String message) {
  -        m_task.log(message, Project.MSG_INFO);
  +        task.log(message, Project.MSG_INFO);
       }
   
  +    /**
  +     * Log a message with <code>MSG_ERR</code> priority
  +     * @param message the message to log
  +     */
       public void error(final String message) {
  -        m_task.log(message, Project.MSG_ERR);
  +        task.log(message, Project.MSG_ERR);
       }
   
  +    /**
  +     * Log a message with <code>MSG_WARN</code> priority
  +     * @param message the message to log
  +     */
       public void warning(final String message) {
  -        m_task.log(message, Project.MSG_WARN);
  +        task.log(message, Project.MSG_WARN);
       }
   
  +    /**
  +     * Log a message with <code>MSG_VERBOSE</code> priority
  +     * @param message the message to log
  +     */
       public void verbose(final String message) {
  -        m_task.log(message, Project.MSG_VERBOSE);
  +        task.log(message, Project.MSG_VERBOSE);
       }
   
  +    /**
  +     * Log a message with <code>MSG_DEBUG</code> priority
  +     * @param message the message to log
  +     */
       public void debug(final String message) {
  -        m_task.log(message, Project.MSG_DEBUG);
  +        task.log(message, Project.MSG_DEBUG);
       }
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org