Browse Source

style - by Kevin Jackson

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277233 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 20 years ago
parent
commit
c4eee4d986
1 changed files with 32 additions and 9 deletions
  1. +32
    -9
      src/main/org/apache/tools/ant/util/TaskLogger.java

+ 32
- 9
src/main/org/apache/tools/ant/util/TaskLogger.java View File

@@ -20,37 +20,60 @@ import org.apache.tools.ant.Project;
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);
}
}

Loading…
Cancel
Save