| Method from org.apache.cactus.integration.ant.util.AntLog Detail: |
public void debug(Object theMessage) {
log(theMessage, null, Project.MSG_DEBUG);
}
|
public void debug(Object theMessage,
Throwable theThrowable) {
log(theMessage, theThrowable, Project.MSG_DEBUG);
}
|
public void error(Object theMessage) {
log(theMessage, null, Project.MSG_ERR);
}
|
public void error(Object theMessage,
Throwable theThrowable) {
log(theMessage, theThrowable, Project.MSG_ERR);
}
|
public void fatal(Object theMessage) {
log(theMessage, null, Project.MSG_ERR);
}
|
public void fatal(Object theMessage,
Throwable theThrowable) {
log(theMessage, theThrowable, Project.MSG_ERR);
}
|
public void info(Object theMessage) {
log(theMessage, null, Project.MSG_INFO);
}
|
public void info(Object theMessage,
Throwable theThrowable) {
log(theMessage, theThrowable, Project.MSG_INFO);
}
|
public boolean isDebugEnabled() {
return true;
}
|
public boolean isErrorEnabled() {
return true;
}
|
public boolean isFatalEnabled() {
return true;
}
|
public boolean isInfoEnabled() {
return true;
}
|
public boolean isTraceEnabled() {
return true;
}
|
public boolean isWarnEnabled() {
return true;
}
|
public void trace(Object theMessage) {
log(theMessage, null, Project.MSG_VERBOSE);
}
|
public void trace(Object theMessage,
Throwable theThrowable) {
log(theMessage, theThrowable, Project.MSG_VERBOSE);
}
|
public void warn(Object theMessage) {
log(theMessage, null, Project.MSG_WARN);
}
|
public void warn(Object theMessage,
Throwable theThrowable) {
log(theMessage, theThrowable, Project.MSG_WARN);
}
|