Methods Summary |
---|
public void | debug(java.lang.String message)Log a message with MSG_DEBUG priority
task.log(message, Project.MSG_DEBUG);
|
public void | error(java.lang.String message)Log a message with MSG_ERR priority
task.log(message, Project.MSG_ERR);
|
public void | info(java.lang.String message)Log a message with MSG_INFO priority
task.log(message, Project.MSG_INFO);
|
public void | verbose(java.lang.String message)Log a message with MSG_VERBOSE priority
task.log(message, Project.MSG_VERBOSE);
|
public void | warning(java.lang.String message)Log a message with MSG_WARN priority
task.log(message, Project.MSG_WARN);
|